:root {
    /* --font: cozette, monospace;
       --text-color: white;
       --background-color: black;
       --border-color: gray;
       --link: #db97ce;
       --link-bg: #c597db33;
       --link-visited: #938aa9;

       background-color: var(--background-color); */

    --accent: #8b97fe;
}

@font-face {
    font-family: "font";
    src: url("/Nunito-VariableFont_wght.ttf");
}

body {
    margin: 1.2em auto;
    font-family: font;
    font-size: 1.1em;
    line-height: 1.5em;
    padding: 0 10%;
    hyphens: auto;

    color: #ffffff;
    background-color: slate;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    overflow: hidden;
    top: 0px;
    width: 100%;
    border-bottom: 2px solid var(--accent);
}

footer {
    border-top: 2px solid var(--accent);
}

nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0 5px;
}

ul {
    list-style: none;
}


.constant {
    speak: none;
}

a {
    color: var(--accent);
}