.toggle-button {
    position: fixed;
    height: 20px;
    width: 35px;
    cursor: pointer;
    z-index: 3;
    padding: 3%;
}

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

.overlay {
    position: fixed;
    /* background-color: #dac8a4; */
    background-color: #d392b5;
    top: 0;
    left: 0;
    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: grid;
    grid-template-columns: 1fr;
    position: relative;
    top: 30%;
    left: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    font-weight: 400;
    text-align: left;
    list-style: none;
    padding-left: 3%;
    line-height: 1.5em;
}
.overlay ul li {
    /* display: block; */
    justify-self: start;
}
.overlay ul li a {
    color: #fff;
    text-decoration: none;
}

.overlay ul li a:hover {
    text-decoration: line-through;
    text-decoration-color: #105dfb;
    text-decoration-style: wavy;
}