                      /* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to da:link {
 color:gray; 
 text-decoration: none;
}

a:visited {
 color:white; 
 text-decoration: line-through;
}
a:hover {
  text-decoration: underline; 
}

.banner {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.navi {
  display: block;
  margin-left: auto;
}o something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black; 
  color: white;
  font-family: sans-serif;
}

