
header{
    width: 100%;
    background: #00913F;
    }
#btn-menu{
    display: none;
}
header label{
    display: none;
    width: 30px;
    height: 30px;
    padding: 10px;
    border-right: 2px solid #000;
}
header label:hover{
    cursor: pointer;
    background: rgba(0,0,0,0.3);
}
.menu ul{
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
    
}
.menu li{
       
    border-right: 2px solid #fff;
}
.menu li:hover{
    background: rgba(0,0,0,0.3)
}
.menu li a{
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
}

@media (max-width:1000px){
    header label{
        display: block;
    }
    .menu{
        position: absolute;
        background: #00913F;
        width: auto;
        margin-left: -80%;
        transition: all 1s;
    }
    .menu ul{
        flex-direction: column;
    }
    .menu li{
        border-top: 2px solid #fff;
    }
    #btn-menu:checked ~ .menu{
        margin: 0;
        
    }
}
