@import url(http://fonts.googleapis.com/css?family=Vollkorn|Roboto);
.toggle-button {
    width: 42px;
    cursor: pointer;
    z-index: 3;
}
.toggle-button span{margin-top: 5px; display: block;}

.bar {
    background-color: #E4CE75;
    display: block;
    width: 100%;
    height: 3px;
    border: 0;
    transition: all .35s ease;
}
.bar + .bar {
    margin-top: 7px;
}
.middle {
    top: 11px;
}
.bottom {
    top: 22px;
}
.toggle-button:hover {
    opacity: .7;
}
.toggle-active .bar {
    background-color: #fff;
}
.toggle-active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
}
.toggle-active .middle {
   opacity: 0;
}
.toggle-active .bottom {
    -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
}

.overlay {
    position: fixed;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: 999999;
    width: 100%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
}
.nav-active {
    opacity: 1;
    visibility: visible;
    height: 100%;
/*    max-height: 340px;*/
}
.overlay ul {
    display: flex; gap: 20px;
    flex-direction: column; align-items: center; justify-content: center;
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 400;
    list-style: none;
    padding: 0;
    text-transform: capitalize;
    height: 100vh;
}
.overlay ul li {
    display: block;
}
.overlay ul li a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-SVN-Mont-Black);

    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=135, Color=#000000)";/*IE 8*/
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);/* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=135, Color=#000000); /*IE 5.5-7*/
}
.overlay ul li a:hover{
    color: yellow;
}