nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px var(--bg-outline) solid;
    position: sticky;
    top: 0;
    background:var(--bg-front-alpha);

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

nav .logo {
    padding: .5em .5em .5em 1.2em;
    font-size: 1.4rem;
}

nav ul {
    display: flex;
    flex-direction: row;
    padding: 0;
}

nav ul li {
    padding: 0 1.2em 0 .5em;
}