/*@media (max-width: 750px) {
    .navbar {
        flex-direction: column;
        top: 0;
        width: 100%;
        height: fit-content;
        border-radius: 0;
    background: linear-gradient(to top, rgba(214, 214, 214, 0.8), rgba(255, 255, 255, 0.493));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 
    inset 0 3px 4px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(24px);
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
        bottom: 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
}
