:root {
    --bg: #080708;
    --bg-slate: #1C181C;
    --menu-slate: #212021;
    --fg-deepest: #7F7F7F;
    --fg-deeper: #A5A5A5;
    --fg-deep: #CCCCCC;
    --fg: #F2F2F2;
    --accent: white;
}

html {
    height: 100%;
    height: 100vh;
    overflow: auto;
    padding: 0; margin: 0;
    font-family: Oxanium;
    background-color: var(--bg);
    color: var(--fg);
}

body {
    margin: 0;
    min-height: 100%;
    min-height: 100vh;
    overflow: auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
}

#content {
    background-color: var(--bg);
    padding: 0.4em 0.1em 0 0.1em;
}

#content > div { background-color: var(--bg-slate); }

a:link { color: var(--fg-deeper); }

a:visited { color: var(--fg-deepest); }

a:focus { outline: none; }

a:hover, a:focus { color: var(--fg-deep); }

a:active { color: var(--accent); }

#page {
    min-height: 0;
    display: flex;
    flex-flow: column;
    flex: 1;
    padding: 1em;
    gap: 1em;
}

#content {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-content: center;
}

#menu {
    flex: 0;
    display: flex;
    margin: 0 auto;
    width: min-content;
    height: min-content;
    background-color: var(--menu-slate);
}

#menu ul {
    text-align: center;
    margin: 0px;
    padding: 0px;
}

#menu li {
    display: flex;
    list-style-type: none;
}

#menu a {
    outline: none;
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 15px;
    display: inline-block;

    transition: 0.2s ease-in-out;
}

#menu a:hover, #menu a:focus {
    color: var(--menu-slate);
    background-color: var(--accent);
}

#base-footer {
    border-top: 2px solid var(--menu-slate);
    padding: 7px;
    gap: 0px;
}

#buttons-88x31 {
    gap: 4px;
    image-rendering: pixelated;
}
