/* 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: white;
  color: black;
  font-family: Verdana;
}

/* this content is for building a navigation bar FIGURE OUT LATER HOW TO GROUP AND LINK PROPERLY??*/
.header {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #f1f1f1;
}

li a {display: block;
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  
}

ul li {
  float: left;
}


/* Change the link and background color on hover */
li a:hover {
  background-color: #555555;
  color: white;
}