#nav-container {
    background: transparent;
    -webkit-backdrop-filter: blur(20px) saturate(1.7);
    backdrop-filter: blur(20px) saturate(1.7);
    pointer-events: auto;
    
}

#nav-bar_menu-button:hover {
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}


#overlay {
    background: #003a3c;
    -webkit-backdrop-filter: blur(120px) saturate(1.7);
    backdrop-filter: blur(120px) saturate(1.7);
    z-index: 1005;
    transition: transform 1.5s ease-in-out;
    /* Add transition */
    transform: translateY(-100%);
}

#overlay.show {
    transform: translateY(0%);
}


#overlay-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    pointer-events: auto;
}
