/* Font */
body {
    font-family: var(--font_geometric_humanist);
    background: radial-gradient(circle at 30% 0%, #3d3d3d 0%, #2a2a2a 60%);
    min-height: 100vh;
}
/* Light mode */
:root {
    --text: #1a1a1a;
    --background: #f5f5f5;
    --link: #2a6ac0;
    --link_visited: #2a6ac0;
    --accent1: #3a3a3a;
    --accent2: #707070;
    --code: #e0e0e0;
    --blockquote: #f0f0f0;
    --blockquote-border: #aaaaaa;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --text: #e8e8e8;
        --background: #333333;
        --link: #7ab3f5;
        --link_visited: #7ab3f5;
        --accent1: #aaaaaa;
        --accent2: #888888;
        --code: #2a2a2a;
        --blockquote: #2e2e2e;
        --blockquote-border: #555555;
    }
}
footer {
    font-family: var(--font_neo_grotesque);
    font-size: 0.85em;
    margin-top: 0;
    padding-top: 0;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 2rem;
}
nav {
    margin-top: 0;
}
nav ul {
    display: flex;
    gap: 1.25rem;
    padding-left: 0;
    margin: 0;
    list-style: none;
}
nav a,
nav a:visited,
nav a:hover,
nav a:active,
nav li,
nav li:hover {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    color: var(--accent1) !important;
    text-decoration: none !important;
}
header a {
    flex-shrink: 0;
    max-width: 360px;
    width: 100%;
}
header svg {
    width: 100%;
    height: auto;
    display: block;
}
pre {
    border-left: 3px solid var(--link);
}