nav {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 3;

    flex-direction: row;
    background-color: black;
    justify-content: space-between;
    padding: 0.5em 1em;
}

nav * {
    align-items: center;
    font-family: var(--primary-font-family);
}

nav > div {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
}

#page-title {
    font-size: 200%;
    margin: 0.3em;
    font-family: var(--primary-font-family);
    font-weight: 100;
    text-decoration: none;
}

.page-links {
    display: flex;
    gap: 1em;
}

.page-links a {
    text-decoration: none;
}
