/* Use a soft background and modern styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4; /* Soft neutral background */
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Style for the main text */
#status {
    font-size: 10vw; /* Huge text that scales with screen size */
    font-weight: bold;
    color: #444; /* Softer than black */
}

/* Optional: Add slight text shadow for elegance */
#status {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
