/* 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." */

body {
  background-color: black;
  color: white;
  font-family: Verdana;
    background-image: url('stars.gif');
    background-size: cover;
      
    background-repeat: no-repeat; /* Optional: Prevent the GIF from repeating if it's smaller than the element */
    background-position: center; /* Optional: Center the GIF on the webpage */

    
    
    
    height: 100vh;
    padding:0;
    margin:0;
}
ul {
  list-style: none;
}

li {
  display: inline-block;
  margin-right: 10px; /* add spacing between items */
}

