html, body {
    height: 100%;
    background-color: white;
}

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

.red-button {
    background-color: red;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    vertical-align: center;
    padding: 12px 15px;
    font-family: sans-serif;
}

@media (prefers-color-scheme: dark) {
    html, body {
        background-color: #222;
    }
}
