nav{
    display: grid;
    grid-template-columns: 20% 60% 20%;
    position: fixed;
    height: 72px;
    width: 100%;
    background: rgba(249, 249, 249, 0.2); 
    backdrop-filter: blur(10px);           
    -webkit-backdrop-filter: blur(10px);   
    transition: top 0.3s ease-in-out;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

nav > div{
    display: none;
}

.hidden {
  display: none;
}

#dropdown{
    display: none;
    width: 100%;
    padding-top: 80px;
    background-color: #f9f9f9;
    margin: 0px;
    border-bottom: 1px solid #e8e8e8;
}

#menu{
    transition: opacity 0.3s ease;
}

#menu:hover{
    opacity: 0.5;
}

ul{
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

#nav-links, #auth-links{
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10%;
    padding-left: 0px;
    padding-right: 25px;
}

#nav-links, #nav-links2, #supportUs{
    font-family: "Geist Mono", monospace;
    justify-content: center !important;
    font-size: 15px;
    margin: 0px;
}

#supportUs{
    padding: 0px;
    border: none;
    background-color: #f9f9f9;
    cursor: pointer; 
    font-weight: normal; 
    color: black;
}

a{
    text-decoration: none;
    color: black;
}

#nav-links > li > a, #nav-links2 > li > a{
    transition: opacity 0.3s ease;
}

#nav-links > li > a:hover,#nav-links2 > li > a:hover, #supportUs:hover{
    opacity: 0.5;
}

#auth-links > li > a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-family: "Inter", sans-serif;
    background-color: white;
    padding: 6px;
    border-radius: 7px;
    border: 1px solid #e8e8e8;
    transition: background-color 0.5s ease;
}

#auth-links > li > a:hover{
    background-color: rgb(226, 226, 226);
}

#logo > h1{
    font-family: "Inter", sans-serif;
    font-style: normal;
    margin-left: 5%;
    font-size: clamp(0.5em, 1.5em, 1.5em);
}

.__variable_2743a1 {
    --font-sans: "Geist", "Geist Fallback", Arial, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}

@media screen and (max-width: 1350px) {
    nav{
        grid-template-columns: 20% 60% 20%;
    }
}

@media screen and (max-width: 960px) {
    nav{
        grid-template-columns: 30% 40% 30%;
    }
}

@media screen and (max-width: 730px) {
    nav{
        padding-left: 10px;
        grid-template-columns: 10% 35% 50%;
        border-bottom: none;
    }

    #nav-links{
        display: none;
    }

    #logo > h1{
        text-align: center;
        margin-left: 0px;
    }

    nav > div{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav > div > img{
        width: 20px;
        height: 20px;
        border: 1px solid #e8e8e8;
        padding: 5px;
        border-radius: 5px;
    }

    #dropdown > #nav-links2{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px;
    }

    #nav-links2 > li > a:hover{
        opacity: 0.5;
    }
}

@media screen and (max-width: 500px) {
    nav{
        grid-template-columns: 8% 37% 55%;
    }
}

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

    nav{
        grid-template-columns: 15% 60%;
    }

    #logo{
        justify-content: center;
    }
}