@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");

.dropdown-menu li {
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.7);
}

@media screen and (max-width: 768px) {

    .header-title-line {
        padding: 0.25rem 0.5rem;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

    .menu-button {
        /* background-color: transparent;
        border: none;
        width: 40px;
        height: 5px;
        display: flex;
        margin-left: auto;
        justify-content: center;
        align-items: center;
        position: relative; */
        background: none;
        border: none;
        cursor: pointer;
        width: 48px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: auto;
        z-index: 1001;
    }

    .menu-icon {
        display: block;
        width: 30px;
        height: 3px;
        background: white;
        position: relative;
    }
    .menu-icon::before,
    .menu-icon::after {
        content: "";
        width: 30px;
        height: 3px;
        background: white;
        position: absolute;
    }
    .menu-icon::before {
        top: -8px;
    }
    .menu-icon::after {
        top: 8px;
    }

    .mobile-nav {
        background-color: var(--HEADER-BGCOLOR);
        display: none;
        transform-origin: top center;
        animation: showMenu 0.5s ease-in-out forwards;
        top: 100%
    }

    .mobile-nav.show {
        display: block;
        animation: showMenu 0.5s ease-in-out forwards;
    }

    .mobile-nav ul {
        list-style-type: none;
        display: flex;
        flex-flow: column nowrap;
    }

    .mobile-nav li {
        padding: 0.5rem;
        border-top: 1px solid var(--HEADER-COLOR);
    }

    .mobile-nav a {
        display: block;
        text-align: center;
        width: 80%;
        margin: auto;
    }

    .mobile-nav a:any-link {
        color: var(--HEADER-COLOR);
        font-weight: bold;
        text-decoration: none;
    }

    .mobile-nav a:hover,
    .mobile-nav a:focus {
        transform: scale(1.2);
        transition: all 0.3s;
    }

    @keyframes showMenu {
        0% {
            transform: scaleY(0);
        }

        80% {
            transform: scaleY(1.2);
        }

        100% {
            transform: scaleY(1);
        }
    }
}