@font-face {
    font-family: Anaheim;
    src: url(../fonts/Anaheim-Regular.ttf);
}

@media (prefers-color-scheme: dark) {
    :root {
        background: #000000 url(../images/bg_pattern_dark.png) 0 0;
        color: #e4dfdf;
    }
}

@media (prefers-color-scheme: light) {
    :root {
        background: #e4dfdf url(../images/bg_pattern_light.png) 0 0;
        color: #000000;
    }
}

:root {
    color-scheme: dark;
}

body {
    font-family: Anaheim, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container h1 {
    font-size: 3rem;
}