/* Ensure the body takes up the entire page */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

/* Center the text and ensure it scales */
.centered-text {
    font-size: 50vmin; /* The font size dynamically scales with the viewport */
    line-height: 1;
    text-align: center;
}

