.hamburger-btn{
    width: 45px;
    cursor: pointer;
    transform: scaleX(-1);
    z-index: 5;
}

.hamburger-btn img{
    width: 100%;
    transform: scaleX(-1);
}

.hamburger-menu{
    position: fixed;
    background-color: hsl(6, 66%, 35%, 75%);
    backdrop-filter: blur(50px);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: -100%;
    z-index: 100;
    transition: 0.3s ease-in-out;
}

.hamburger-menu a{
    font-size: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    color: #fff;
    text-decoration: none;
}

.close-btn{
    width: 30px;
    position: absolute;
    top: 45px;
    left: 60px;
    cursor: pointer;
}

.hamburger-menu.active{
    left: 0;
}

nav{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    padding: 3.5em 3.5em 1em 3.5em;
}

nav a{
    margin: 0;
    margin-bottom: 10px;
}

.hamburger-division{
    width: 100%;
    height: 1px;
    background: var(--white);
    margin-top: 25px;
    opacity: 50%;
}

