body {
    font-family: "Poppins", sans-serif;
}

/* *::-webkit-scrollbar {
    display: none;
}
 */
.hamburger {
    position: relative;
    width: 25px;
    height: 25px;
}

.hamburger > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hamburger span {
    height: 2px;
    width: 100%;
    background-color: black;
    display: block;
    margin: 7px 0px;
    transition: 0.2s ease-in-out;
    transform: none;
    transform-origin: center;
}

.hamburger.active span:nth-of-type(1) {
    transform: translate(0%, 330%) rotate(-45deg);
    background-color: #3088ce;
}

.hamburger.active span:nth-of-type(2) {
    transform: translate(0%, -80%) rotate(45deg);
    background-color: #3088ce;
}

/* @media screen and (max-width: 640px) {
    .reverse {
        padding: 0 10px;
        background-color: black;
        right: 0 !important;
    }

    .reverse .hamburger span {
        background-color: white;
    }
} */
