body {
    background:#471E00;
    color:#8AB7FF;
    padding:1em ;
}

a {
    color: #80FF86;
}

h1 {
  font-family: "Monsieur La Doulaise", cursive;
  font-weight: 400;
  font-style: normal;
}
* {
  border-sizing: border-box;
  margin: 1;
  padding: 0;
}

nav {
  display: flex;
  height: 2.45em; /* Define a fixed height for the nav */
  
  background-color: #B00707;
  align-items: stretch; /* Forces children to take full container height */
  
  justify-content: center;
  background-color: #B00707;
margin: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.nav-link {
  display: flex;
  align-items: center; /* Centers text vertically within the nav */
  
  padding: 0 3em; /* Adjust the second number to add more spacing between the menu items */
  
  color: white;
  text-decoration: none;
  font-size: 1.4em;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: #455d7a; 
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 4em; 
  width: 4em;
  /* match the logo size to the nav height */
}









/* BASIC DOCUMENT SETUP */
/* YOU MIGHT WANT A 'main' RULE TO FORMAT EVERYTHING THAT ISN'T THE NAV  */


body {
  background-color: #990000;
}

main {
  background-color: #990000;
  width: 90%;
  margin: auto;
  padding: 1em;
}
nav a:hover {
  background-color: #455d7a;
  font-size: 2em;
}