body, html {
    height: 100%; /* Ensures the body and html take up the full viewport height */
    margin: 0;   /* Removes default body margins */
    display: flex; /* Makes the body a flex container */
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    flex-direction: column; /* Stacks items (optional, good practice) */
}

.center-container {
    text-align: center; /* Centers text within its own container horizontally (optional) */
}

p {
    font-size: 30px; /* Optional: style your text */
    color: white;
}