body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: monospace;
    text-align: center;
    background-color: #f9f3e5;
    color: #2d2a24;
}

.text {
    text-align: center;
}

.text p {
    margin: 0.5em 0;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #2d2a24;
        color: #f9f3e5;
    }
}
