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

/* 
Common Units in Css:

__px: the unit for pixels.
__em: the unit for the calculated size of a font (i.e. “2em” is two times the current font size)
__pt: the unit for points, for measurements typically in printed media.
__%: the unit for percentages.

Other units include pc (picas), cm (centimeters), mm (millimeters) and in (inches).
*/


/* Selector -> */ body {  /* V Properties */
  background-color: #23032E;
  background-image: linear-gradient(#23032E, #09032E); /* After the colon is the value */
  color: white;
  font-family: "Times New Roman", "Verdana";
}



/* Site Nav */

.siteNav ul {
  list-style-type: none;
  margin: 3px;
  padding: 10px;
  text-align: center;
  overflow: hidden;
}

.siteNav li { 
  display: inline;
  padding: 1.5%;
}

.siteNav li a {
  
}

.siteNav li a:hover {
  
}
