.navigation{
    display: flex;
    gap: .75rem;
    justify-content: flex-end;
}

.navigation > a{
    /* outline: 1px solid red; */
    text-decoration: none;
    cursor: pointer;
}

.checkbtn {
    display: none;
}

#check {
    display: none;
}


@media screen and (max-width: 480px) {
    .navigation{
        display: grid;
        justify-items: start;
        position: absolute;
        left: -100%;
        transition: all .5s;
    }

    .checkbtn{
        display: block;
        width: 2rem;
        min-height: 2.4rem;
    }
    
    .checkbtn > img{
        max-width: 24px;
        margin: .2rem;
        padding: .2rem;
    }
    
    #check:checked ~ .navigation{
        position: relative;
        left: 0;
    }

    .menu-item{
    }
}