:root {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background-color: #eee;
    color: #112;
}

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

        background-color: #112;
        color: #eee;
    }
}

* {
    box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
}
