* {
  border-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
    background-color: #86caab;
    color: #FFFFFF;
    font-size: 1.1em;
    padding: 2em;
}

/*LINKS*/
a {
   color: #275942; 
    text-decoration: none;
    
    padding: .3em
    
}

a:hover {
 text-decoration: underline;
 background-color:#275942;
 color: #86caab;
 border-radius:5px ;
}  

h1 {
      font-family: "Henny Penny", system-ui;

}



img { 
 border: .7em inset #86caab;
}


.logo {
 border: 1px solid white;
 border-radius: 50%;
}
 
/*Start Menu Bar*/
nav {
  height: 100%; /* Full-height */
  width: 15%; /* Desired width */
  position: fixed; /* Sticks menu to the screen */
  z-index: 1; /* Keeps menu in front of other elements */
  top: 0;
  left: 0;
  background-color: #B00707; 
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px; /* Add some space at the top of the links */
}

/* LINKS*/

nav a {
  padding: .5em .75em .5em 1em;
  text-decoration: none; /* Remove the underlines */
  font-size: 1.3em;
  color: #FFFFFF;
  display: block; /* Makes each menu link occupy its own line */
  transition: 0.3s; /* Animates the hover effect */
}

nav a:hover {
  color: #f1f1f1;
  text-shadow: 2px 2px 2px #000000;
}

/*End Menu Bar*/

main {
  margin-left: 15%; /* Same as the width of the sidebar */
  padding: 1em 1em;
  padding-top: 20px; /* Same number as the top of the menu */
}


