body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #ff6f61, #de83f5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.container {
    text-align: center;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
}

.header p {
    font-size: 1.2em;
    margin-bottom: 2em;
}

.main-content .quote {
    font-size: 1.5em;
    margin-bottom: 2em;
}

.animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 50px;
    height: 50px;
    margin: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    animation: bounce 1.5s infinite;
}

.circle:nth-child(2) {
    animation-delay: 0.3s;
}

.circle:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.footer {
    margin-top: 2em;
}
