.menu{
    transform: translate(2000px);
    transition:all 1s ease-in;
    text-align: center;
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    left: 0;
    z-index: 100 !important;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    ul{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .abs{
        position: absolute;
        right: 25px;
        top: 25px;
    }
 
  
}
#check:checked ~ .menu{
    transform: translate(0);  
   
}
