:root {
    --main: rgb(0, 16, 29);
    --accent: rgb(14, 173, 173);
    --bg: rgb(236, 245, 253);
}
@media (prefers-color-scheme: dark) {
    :root {
        --main: rgb(236, 245, 253);
        --bg: rgb(0, 16, 29);
    }
}

body {
    margin: 0 .5rem;
    font-size: 18px;
    background-color: var(--bg);
}
* {
    box-sizing: border-box;
    font-family: sans-serif, sans-serif;
    color: var(--main);
}

header {
    border-bottom: 2px solid var(--accent);
}
header > h1 {
    margin-bottom: 0.5rem;
}

a {
    color: var(--accent);
    text-decoration: none;
}
a:hover, a:hover::before, a:hover::after {
    font-weight: bold;
}
a::before {
    content: '{ '
}
a::after {
    content: ' }'
}

p.gmi-link::before {
    content: '=> ';
}

pre > code {
    font-family: monospace, monospace;
}
