* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.centered-container {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center;    /* Vertically center */
    height: 100vh;          /* Full viewport height */
    text-align: center;     /* Center text alignment */
    padding: 20px;          /* Optional padding */
}

.centered-paragraph {
    background-color: rgba(0, 0, 0, 0.1); /* Optional background color for visibility */
    padding: 20px;           /* Padding around the text */
    border-radius: 10px;     /* Rounded corners */
    max-width: 600px;        /* Maximum width to ensure readability */
    margin: auto;            /* Auto margin for responsive behavior */
}
