:root {
    color-scheme: light dark;
    font-family: monospace;

    scrollbar-width: none;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */

    --font-family: 'Outfit';
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/static/Outfit-Thin.ttf') format('truetype');
}

@media (prefers-color-scheme: light) {

    section:nth-child(odd) {
        background-color: #FFF;
    }
    section:nth-child(even) {
        background-color: #DDD;
    }

}

@media (prefers-color-scheme: dark) {

    section:nth-child(odd) {
        background-color: #000;
    }
    section:nth-child(even) {
        background-color: #222;
    }

}

body {
    font-family: var(--font-family), monospace;
    padding:0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    min-width: 100vw;
}

