body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right bottom, #e0f2f7, #bbdefb, #90caf9, #64b5f6, #42a5f5); /* Gradient colors based on the image */
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: #333; /* Darker text color for contrast */
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    padding: 20px;
}

.title {
    font-size: 4em; /* Adjust as needed */
    color: #212121; /* Very dark grey, almost black, for the title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Subtle text shadow for depth */
}

.status {
    font-size: 1.5em; /* Adjust as needed */
    color: #424242; /* Darker grey for the status text */
}