:root {
  --mobile-edge-padding: 1rem;
  --desktop-edge-padding: 5%;
}

body {
    font-family: Georgia, serif;

    margin: 0;

    background-color: black;
    color: white;

    font-size: 14pt;
}

a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 5px;
}

#header {
    display: flex;
    align-items: center;
    gap: 2rem;

    width: 100%;
    background-color: black;

    position: fixed;
    fixed: top;

    font-size: 10pt;
    font-family: Futura, sans-serif;
    letter-spacing: 0.15rem;
    text-align: left;

    padding-left: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;

    @media (min-width:1000px) {
        font-size: 16pt;
    }
}

#name {
    color: #888;
}

#header-links {
    display: flex;
    gap: 2rem;
}

.header-link {
    font-size: 10pt;

    @media (min-width:1000px) {
        font-size: 12pt;
    }
}

.header-link:hover {
    scale: 1.2;
    transition: scale 100ms ease;
}

#header a {
    text-decoration: none;
}

#header a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

