.navbarAndBurgerWrapper {
    width: 100%;
    position: fixed;
}

.navbarWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.25s;
}

.navbarItem {
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.4rem 2.5rem;
    transition: 0.3s;
}

.navbarItem:hover {
    background-color: rgba(201, 201, 201, 0.2);
}

.scrollActive {
    background-color: #505bff;
    box-shadow: 0 2px 7px rgba(70, 70, 70, 0.4);
}

.burgerOpener {
    display: none;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.25s;
}

.burgerOpener:hover {
    background-color: rgba(255, 255, 255, 0.2);
}



/* --- BURGER MENU --- */

.burgerMenuWrapper {
    display: none;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #505bff;
}

.burgerItem {
    width: 50%;
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 1.5rem 0;
    text-align: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.25s;
}

.burgerItem:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.burgerItem:active {
    background-color: rgba(255, 255, 255, 0.3);
}



/* --- RESPONSIVE --- */

/* --- 660px --- */
@media only screen and (max-width: 660px) {
    .navbarWrapper {
        padding: 1.4rem;
        justify-content: flex-end;
        align-items: center;
    }

    .navbarItem {
        display: none;
    }

    .burgerOpener {
        display: flex;
        margin-right: 8%;
    }
}

