body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3em;
    color: inherit;
}

p {
    font-size: 1.5em;
    color: #666;
}

a {
    display: block;
    margin-top: 20px;
    font-size: 1.2em;
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    p {
        color: #b0b0b0;
    }

    a {
        color: #1e90ff;
    }
}