/*@import url("table.css");*/

:root {
    --background-color: rgba(250, 250, 250);
    --text-color: #323232;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #020617;
        --text-color: #f8f9fc;
    }
}

body {
    background-color: var(--background-color);
    font-family:
        Optima, "Cooper Hewitt", "Baskerville", "Times New Roman", serif;
    color: var(--text-color);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    height: 100vh;
}

code,
pre {
    font-family: consolas, "Courier New", Courier, monospace;
}
