@media screen and (max-width: 600px){

}

@media screen and (max-width: 650px){
    .close-menu{
        display: none;
        z-index: 0;
    }
    .menu-spacing{
        display: none;
    }
    .menu{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        text-align: center;
        display: none;
    }
    .menu img{
        margin-bottom: 5rem;
        width: 25rem;
    }
    .menu ul li a {
        font-size: 2rem;  
    }
    .menu-content, .menu-content ul{
        flex-direction: column;
        justify-content: center;
    }
    .menu-content{
        height: 100vh;
    }
    .close-menu-label::after{
        content: '☰';
        position: fixed;
        z-index: 2;
        top: 2rem;
        right: 2rem;
        background: rgba(2, 71, 78, 1);
        color: #e7e0e0;
        font-size: 3rem;
        line-height: 3rem;
        width: 3rem;
        height: 3rem;
        text-align: center;
        padding: 0.5rem;
        cursor: pointer;
    }
    .close-menu:checked~.menu{
        display: block;
    }
    .close-menu:checked~.close-menu-label::after{
        display: block;
        content: 'X';
    }

}