/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    overflow: hidden;
}

..container {
    position: relative;
    text-align: center;
    color: white;
}

.content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.5em;
}

.loading-bar {
    width: 200px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin: 20px auto;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #ff6e7f, #bfe9ff);
    border-radius: 5px;
    animation: progressAnimation 5s linear infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 100%; }
}

.background-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatAnimation 6s ease-in-out infinite alternate;
}

.circle1 {
    width: 80px;
    height: 80px;
    background-color: #ff9800;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.circle2 {
    width: 120px;
    height: 120px;
    background-color: #4caf50;
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.circle3 {
    width: 60px;
    height: 60px;
    background-color: #2196f3;
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.circle4 {
    width: 100px;
    height: 100px;
    background-color: #f44336;
    top: 30%;
    right: 35%;
    animation-delay: 3s;
}

.circle5 {
    width: 90px;
    height: 90px;
    background-color: #9c27b0;
    bottom: 5%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1.2em;
    }
    .loading-bar {
        width: 80%;
    }
}