nav {
    display: flex;
    flex-direction: column;
    padding: var(--body-margin);
    text-align: center;
    position: fixed;
    width: 15%;
    padding-top: 1em;
}

nav a {
    grid-column: span 2;
}

a.active {
    text-decoration: underline;
    text-transform: uppercase;
}

div.moment {
    pointer-events: auto;
    grid-column: 1 / -1;
    text-align: center;
    /* mix-blend-mode: difference; */
    position: relative;
    /* color: red; */
}

.moment a {
    color: tomato;
}

@media only screen and (995px < width <=1500px) {

    nav {
        position: relative;
        width: 100%;
        top: 1em;
        padding: 0;
    }
}

@media only screen and (width <=995px) {
    nav {
        position: relative;
        width: 100%;
        font-size: 110%;
        line-height: 1.2;
        top: 1em;
        padding: 0;

    }

    nav a {}
}