body {
    font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
    background: #333333;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}
code {
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace; 
}
main {
    margin: 1em;
    flex: 1;
}
h1 {
    margin-top: 0;
}
p {
    max-width: 50em;
}
a {
    color: #00dddd;
}
a:hover {
    color: #00ffff;
}
a:visited {
    color: #dd77ff;
}
a:visited:hover {
    color: #eeaaff;
}
div.flexcontainer {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 2em;
}
div.flexitem {
    text-align: left;
    margin-left: 1em;
    margin-right: 1em;
}
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1em;
    text-align: center;
    flex: 0;
}
