#navbar {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid rgb(221, 221, 221);
    padding: 0 var(--content-side-padding);
    display: flex;
    flex-direction: row;
    background-color: white;
    align-items: center;
}

.nav_flex_end {
    justify-content: flex-end;
}

.nav_flex_between {
    justify-content: space-between;
}

#nav_name {
    font-weight: lighter;
    font-size: 16pt;
}

#navbar > ul {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 25px;
}

.list_item {
    font-size: 12pt;
}

.list_item > a {
    text-decoration: none;
    color: black;
    transition: color 0.2s;
}

.list_item > a.active {
    color: var(--accent-color);
    font-weight: bold;
}

.list_item > a:hover {
    color: var(--accent-color);
}

@media only screen and (max-width: 650px) {
    #navbar {
        justify-content: center;
        position: fixed;
    }

    #nav_name {
        display: none;
        visibility: hidden;
    }
}