@charset "utf-8";
/* CSS Document 
Nilda Comparan-Heyek
https://NildaHeyek.com
Sept 2023
*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0; /* Change the background color as needed */
}

.centered-text {
    text-align: center;
    font-size: 36px; /* Adjust the font size as needed */
}

@media screen and (max-width: 768px) {
    /* Adjust styles for smaller screens */
    .centered-text {
        font-size: 24px; /* Decrease font size on smaller screens */
    }
}
