header {
    height: 52px;
    min-width: 368px;
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 2;
}

.nav-background {
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(250, 250, 252, 0.8);
    height: 100%;
    position: absolute;
    width: 100%;
}

.nav-background::after {
    background-color: rgba(0, 0, 0, 0.16);
    content: "";
    height: 1px;
    position: absolute;
    top: 100%;
    width: 100%;
}

.nav-content {
    box-sizing: content-box;
    height: 100%;
    margin: 0px auto;
    max-width: 980px;
    padding: 0px 14px;
    position: relative;
}

.nav-title {
    float: left;
}

.nav-title a {
    display: flex;
    fill: rgb(29, 29, 31);
    font-family: 'title';
    font-size: 24px;
    font-weight: 600;
    margin: 14px 0px;
    text-decoration-line: none;
}

.nav-title a:link {
    color: inherit;
}

.nav-title a:visited {
    color: inherit;
}

.nav-menu {
    float: right;
}

.nav-button {
    margin: 14px 0px;
}

.nav-action-button {
    background-color: rgb(0, 113, 227);
    border-radius: 50px;
    border-width: 0px;
    color: rgb(245, 245, 247);
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 10px;
}

.nav-action-button:hover {
    background-color: rgb(0, 118, 223);
}

.nav-action-button:active {
    background-color: rgb(0, 110, 219);
}

@media (prefers-color-scheme: dark) {
    .nav-background {
        background-color: rgba(22, 22, 23, 0.8);
    }

    .nav-background::after {
        background-color: rgba(255, 255, 255, 0.24);
    }

    .nav-title a {
        fill: rgb(245, 245, 247);
    }
}