 * {
  border-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
    background-color: #34485B;
    color: #FFFFFF;
    font-family: "Elms Sans", sans-serif;
    padding: 5em;
}

a {
 color: #FFD1ED;
 text-decoration: none;
 
 padding: .3em;
}

a:hover {
    text-decoration: underline;
    
    background-color: #FFD1ED;
    color:#34485B ;
    border-radius: 5px;
}

 h1{ 
       font-family: "Roboto", sans-serif;
 }
 
 
 
 img{
   border: .5em inset #FFD1ED;  
     transition: .5s;
 }
 
 .logo {
     border: none;
      width: 2em;
  margin-top: .3em;
 }
 .logo:hover {
     border: none;
 }
 
 img:hover {
     border: .5em inset #d5ecd4;
 }
 
 

nav {
    width: 100%;
    margin: 0;
    background-color: #FFD1ED;

  /* makes the menu "sticky" */
    position: fixed;
  
   top: 0;
    margin-left: -5em;
    height: 12vh;
}

.menu {
    list-style-type: none;
  
    margin: 0 auto;
    padding: 0;
  
  /* adjust this to control the placement of the menuitems in the navbar */
    padding-left: 3em;
  }

.menuitem {
    float: left;
}

.menuitem a {
    display: inline-block;
    color: #FFFFFF;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1em;
    margin-top: 1em;
}

.menuitem a:hover {
    background-color: #455d7a;
    font-size: 1em;
    color: #e3e3e3;
}

.logo { border: none;
      width: 4em;
      margin-top: .3em;}
  

main {
  padding: 1em;
  
/*   SHIFT THE 'main' ELEMENT DOWN, AWAY FROM THE MENU BAR */
  padding-top: 3em;
  
/*   CUSTOMIZE THESE UNTIL YOU LIKE THE WAY THEY LOOK  */
    width: 90%;
  margin: auto;
}

 
 