.menu {
    position: relative;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.menu.sticky {
    position: fixed !important;
    top: 0 !important;
    background-color: var(--secondary-color) !important;
    bottom: auto !important;
    opacity: 1 !important;
}

@media screen and (max-width: 800px) {
    .menu {
        position: fixed;
        top: 0;
        background-color: var(--secondary-color);
        bottom: auto;
        opacity: 1;
    }

    .menu h1 {
        font-family: var(--accent-font);
        font-weight: 700;
        font-size: 1.25rem;
        margin: 0;
    }

    .menu-fill {
        display: none;
    }

    .menu-mid a {
        display: none;
    }

    .hidden-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px;
        text-decoration: none;
        color: var(--primary-color);
    }

    .dropdown-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding: 10px;
        position: absolute;
        height: calc(100vh - 40px);
        width: 50%;
        background-color: var(--secondary-color-50);
        border: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: var(--primary-color);
        top: 40px;
        right: calc(-50% - 20px);
        transition: all 0.3s ease-in-out;
    }

    .dropdown-menu.show {
        display: flex;
        position: absolute;
        top: 40px;
        right: 0px;
    }
}