:root {
    --accent-color: rgb(64, 157, 255);
}

body {
    margin: 0;
    background-color: rgb(32, 32, 32);
    /* overflow: hidden; */
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    color: #eee;
    font-size: 16px;
}

* {
    font-family: inherit;
}

.button {
    transition: box-shadow 150ms ease, background-color 150ms ease;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.2);
}

.button:hover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

/* NAVBAR */

#navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 9999999;
}

nav {
    height: 48px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    width: 40%;
    margin-top: 8px;
    padding: 6px 36px;
    padding-right: 56px;
    display: flex;
    gap: 3.5rem;
    align-items: center;
    box-sizing: border-box;
    min-width: fit-content;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

nav.full {
    height: 56px;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    background: none;
    backdrop-filter: blur(1.25px);
    -webkit-backdrop-filter: blur(1.25);
    border: 0px solid rgba(0, 0, 0, 0.2);
}

nav #title-img {
    height: 100%;
    width: auto;
    aspect-ratio: 1;
    box-sizing: border-box;
}

#nav-buttons {
    display: flex;
    gap: 3.5rem;
}

#nav-buttons a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 800px) {
    nav {
        height: 56px;
        margin-top: 0;
        border-radius: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border: 0px solid rgba(0, 0, 0, 0.2);
        gap: 12vw;
    }

    #nav-buttons {
        gap: 8vw;
    }
}