html, body {
    height: 100%; /* Ensure html and body take full viewport height */
    margin: 0;
    padding: 0;
}

.center-container {
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100%; /* Make container take full viewport height */
}

.center-container p {
    /* Optional: Add styling to the text itself */
    font-size: 2em;
    text-align: center; /* Center text within its own line if it wraps */
}
