* {
  border-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
    background-color:  #E8F349;
    color: #0F0000;
    font-family:"Faster One", system-ui; 
    font-size: 1.3em;
    padding: 4em;
}

a {
    color: #FF1FCE;
    text-decoration: none;
    
    padding:.3em;
    transition: .5s;
}

    a:hover {
        text-decoration: underline;
    
    background-color: #FF1FCE ;
    color: black;
    border-radius: 5px;
}


hl {
    font-family: "Faster One", system-ui;
}

img {
    border:.1em solid #FF1FCE;
    transition:.5s;
}

img:hover{
    border:1em inset pink;
}

.logo:hover{
    border:none;
}
.logo{
    border:none;
    border-radius: 20%;
     width: 2em;
  margin-top: .3em;
  
}


nav {
    width: 100%;
    margin: 0;
    background-color: pink;
 margin-left: -4em;
  /* makes the menu "sticky" */
    position: fixed;
  
  /* makes sure the menu sticks to the very top of the page */
    top: 0;
}

.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: #000000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1em;
}

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



main {
/*   ADD PADDING INSIDE THE WHOLE 'main' ELEMENT  */
  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;
}