/* 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: green;
  font-family: Garamond;
}

header {
  
  background-color: #242424 ;
  color: #9e050f ;  
  font-family: 'Geovano Display', sans-serif;
  height: 20vh; /* set the height of the header to 10% of the viewport height */
  padding: 20px;
}

header img {
  position: relative;
  right:0%;
  width: 100%;
 
}
  
  container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 95vh;
  margin: 0 auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline;
  margin-right: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 23px;
}



a:link {
  color: blue;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: orange;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
