#navbar-container {
    /* place on top */
    position: fixed;
    top: 0;

    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;

    width: 100%;

    z-index: 1000;
    background: #0c0c0c;
}

#navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    margin: 0 auto;
    max-width: var(--column-width);
}

#navbar #title a {
    flex-grow: 1;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;

    font-weight: 600;
}

#navbar #title a img {
    border-radius: 50%;
}

#navbar #links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#navbar #links a {
    transition: color 0.5s;
}

#navbar #links a#active,
#navbar #links a:hover {
    color: var(--muted-text-colour);
}

@media (max-width: 1000px) {
    #navbar-container {
        background: linear-gradient(90deg, #CA424633, #9195ff33);
        position: relative;
    }

    #navbar {
        flex-direction: column;
        padding: 0px 10px;
    }

    #navbar #title a {
        margin-bottom: 10px;
    }
}