
.nav-container{
    width: 100%;
    height: 70px;
    background-color: rgb(255, 255, 255);
    z-index: 1000;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}


#menuToggle a
{
text-decoration: none;
color: rgb(10, 10, 10);
font-size: 1.5rem;
font-weight: 800;
position: relative;
transition: color 0.3s ease;
}

#menuToggle a::after{
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: rgb(66, 98, 56);
left: 0;
bottom: -.6rem;
transform: scaleX(0);
transition: all .4s ease-in-out;
transform-origin: left;
}

#menuToggle a:hover::after{
transform: scaleX(1);
}

#menuToggle ul li{
    display: inline-block;
    margin: 0 5rem;
}

#menuToggle input{
    display: none;
}