main {
    font-family: Cinecav X Mono, monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main>* {
    background: white;
}

@media (prefers-color-scheme: dark) {
    main>* {
        background: rgba(0, 0, 0, 0.55)
    }
}