/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Centering the content */
.wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.progress-message {
    font-size: 1.2rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #333; /* Dark background */
    color: white; /* White text */
    padding: 20px 0;
    text-align: center;
    display: flex; /* Flexbox layout for alignment */
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    font-size: 0.9rem;
}

footer .container {
    background-color: unset;
}

footer p {
    margin: 0; /* Remove any margin to avoid misalignment */
}

