#burger-menu {
    position: fixed;
    cursor: pointer;
    color: white;
    font-size: 2.5em;
    top: 50px;
    right: 50px;
    z-index: 120;
}

.burger-menu {
    display: flex;
    transition: 0.15s ease;
}

.burger-menu:hover .icon {
    transform: scale(1.15);
    transition: 0.15s ease;
}

.burger-menu:active .icon {
    transform: scale(1.3);
    transition: 0.15s ease;
}

.burger-menu .text {
    font-family: 'PFD';
    font-weight: 500;
    margin-right: 15px;
    font-size: .55em;
}

.burger-menu .icon {
    font-size: .9em;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: var(--red);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    margin: 10px 0;
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: white;
    display: block;
    transition: 0.15s ease;
}

.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
    transform: scale(1.15);
    transition: 0.15s ease;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

@media (max-width: 320px) {
    #burger-menu {
        right: 30px;
    }
}