* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.logo h1 {
    font-size: 2.5em;
    color: #3498db;
    font-weight: 600;
}

.content h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-top: 20px;
}

.content p {
    font-size: 1.1em;
    margin: 10px 0;
}

.progress-bar {
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    background-color: #ddd;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    width: 50%;
    height: 100%;
    background-color: #3498db;
    animation: progress-animation 2s ease-in-out infinite;
}

@keyframes progress-animation {
    0% { width: 0; }
    100% { width: 100%; }
}

footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #888;
}

footer p {
    margin: 5px 0;
}
