.test-values {
    position: fixed;
    bottom: 1rem;
}

@font-face {
    font-family: "Instrument Serif";
    src: url("/fonts/InstrumentSerif-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter_24pt-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

html,
body {
    background-color: var(--bg-clr);
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 300;
}

nav {
    bottom: 4dvh;
    position: fixed;
    width: 100%;
    z-index: 15;
    align-items: baseline;
}

#nav-list {
    display: contents;

    list-style: none;
}

.nav-start {
    grid-column: 2 / 5;
    font-size: var(--font-size-1);
}

.nav-center {
    grid-column: 5 / 9;
    justify-self: center;
}

.nav-end {
    grid-column: 9 / 12;
    justify-self: end;
}

@media (max-width: 600px) {
    .nav-start {
        font-size: var(--font-size);
    }
    .nav-center,
    .nav-end {
        font-size: var(--font-size-1b);
    }
}

a {
    font: inherit;
    cursor: pointer;
    color: inherit;
    transition: color 0.25s ease-in;
}

.nav-link:hover,
a:hover {
    color: darkgray;
}

.nav-link {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
    transition: color 0.25s ease-in;
}

.italic {
    font-family:
        Instrument Serif,
        serif;
    font-style: italic;
}

.hidden {
    display: none !important;
}
