nav {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: var(--navbar-height);
    background-color: var(--main-color-bg);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    container: nav-container / inline-size;
    font-size: 1.7rem;
}

nav a
{
    padding: 1.1em 1.3em;
    text-decoration: none;
}

nav .left, nav .right
{
    display: flex;
    align-items: center;
    min-width: 300px;
}

nav .right
{
    justify-content: right;
}

nav .middle
{
    display: flex;
    justify-content: center;
    flex-grow: 1;
    margin: 0 20px;
}

nav .middle > *
{
    width: 100%;
}
    
.section-search-bar.mobile
{
    display: none;
    position: sticky;
    inset: 0 0 auto 0;
    background-color: var(--bg-color);
    padding: 20px;
    z-index: 5;
}
