body {
    background-color: var(--background);
    color: var(--foreground);
    font-size: 18px;
    font-family: "Courier", monospace;
    margin: 0;
    min-height: 100vh;
    display: grid;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.wrapper {
    text-align: center;
}

h1,
h2 {
    font-weight: normal;
}

:root {
    --background: rgb(255, 255, 255);
    --foreground: rgb(0, 0, 0);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: rgb(0, 0, 0);
        --foreground: rgb(222, 222, 222);
    }
}
