/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

body {
  background-color: black;
  color: white;
  font-family: 'Lexend';

  margin: 0; /* Remove default margin */
  
  min-height: 100vh; /* Min viewport height */
  display: flex; /* Use Flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  flex-direction: column; /* Stack items vertically */
  
  text-align: center; /* Center texts */
}

a {
  color: white 
}

li {
  text-align: left; /* Left <li> texts */
}

img {
  width: 200px; /* sets the width to 200 pixels */
  height: auto; /* keeps aspect ratio */
}

footer {
  margin: 20px 0;
}