* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #f39c12;
}

p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 20px 0;
}

.animation {
    margin-top: 20px;
}

.bar {
    width: 50px;
    height: 10px;
    background-color: #3498db;
    margin: 5px auto;
    animation: loading 1.5s infinite;
}

.bar:nth-child(1) {
    animation-delay: 0s;
}

.bar:nth-child(2) {
    animation-delay: 0.3s;
}

.bar:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes loading {
    0% {
        width: 50px;
    }
    50% {
        width: 80px;
    }
    100% {
        width: 50px;
    }
}
