#menu{
    position: fixed;
    top: 0;	
    left:100%;
    width: 100%;
    height: 100vh;    
    background: #fec006;
    z-index: 1;
    display: flex;
    justify-content: center; 
    align-items: center; 
    transition: 5.5s;  
}


#menu.move {
  left:0;
}

#menu .mobile{
    background: none;
    border: 0;
    position: absolute;
    top: 20px;
    right: 20px; 
    width: 40px;   
}

#menu nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 50%;
}

#menu nav a{
    color:#000;
    font-family: "Sofia Sans Condensed", serif;
    text-decoration: none;
    font-size: 36px;
    text-transform: uppercase;    
}

#menu nav a.active{
    color:#bf1f29;
}



