* {
  border-sizing: border-box;
  margin: 0;
  padding: 0;
}



body {  background-color: #A81F1F;  
color: #FCFCFC;  
font-size: 1.3em;    
padding: 3em; 
  font-family: "Arvo", serif;
}

/*LINKS*/
a {     
    color: #2043CF;      
    text-decoration: none;     
    padding: .3em;     
    transition: .5s; 
    
}
a:hover {     
    text-decoration: underline; 
    
}

/*menu bar*/
nav {
  height: 100%; /* Full-height */
  width: 10%; /* 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: #ddd; 
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px; /* Add some space at the top of the 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: ;
  text-shadow: 2px 2px 2px #000000;
}
/*end menu*/
main {
  margin-left: 10%; /* Same as the width of the sidebar */
  padding: 1em 2em;
  padding-top: 2em; /* Same number as the top of the menu */







/* BASIC DOCUMENT SETUP */

body {
 padding: 3em;
}
