body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.message{
  margin-top: 20px;
}

.sub-title {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 10px;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #3498db;
    border-radius: 5px;
    width: 0%;
    animation: progress-animation 3s linear forwards;
}

@keyframes progress-animation {
    0% {
        width: 0%;
    }
    100% {
        width: 90%; /* Adjust to simulate loading */
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    .sub-title {
        font-size: 1.5rem;
    }
    .description {
        font-size: 1rem;
    }
}