* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 10px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: animateCircle 8s linear infinite;
    opacity: 0.8;
}

/* Circle sizes based on viewport width for mobile-first */
.circle1 {
    width: 30vw;
    height: 30vw;
    background-color: rgba(255, 99, 71, 0.7); /* Tomato */
    animation-delay: 0s;
    top: 10%;
    left: 20%;
}

.circle2 {
    width: 35vw;
    height: 35vw;
    background-color: rgba(255, 165, 0, 0.7); /* Orange */
    animation-delay: 1s;
    top: 40%;
    left: 70%;
}

.circle3 {
    width: 45vw;
    height: 45vw;
    background-color: rgba(255, 215, 0, 0.7); /* Gold */
    animation-delay: 2s;
    bottom: 10%;
    right: 15%;
}

.circle4 {
    width: 25vw;
    height: 25vw;
    background-color: rgba(240, 128, 128, 0.7); /* Light Coral */
    animation-delay: 3s;
    top: 60%;
    right: 10%;
}

.circle5 {
    width: 35vw;
    height: 35vw;
    background-color: rgba(255, 140, 0, 0.7); /* Dark Orange */
    animation-delay: 4s;
    top: 70%;
    left: 40%;
}

.circle6 {
    width: 20vw;
    height: 20vw;
    background-color: rgba(255, 160, 122, 0.7); /* Light Salmon */
    animation-delay: 5s;
    top: 5%;
    right: 5%;
}

.circle7 {
    width: 15vw;
    height: 15vw;
    background-color: rgba(255, 105, 180, 0.7); /* Hot Pink */
    animation-delay: 6s;
    bottom: 5%;
    left: 10%;
}

.circle8 {
    width: 30vw;
    height: 30vw;
    background-color: rgba(255, 182, 193, 0.7); /* Light Pink */
    animation-delay: 7s;
    bottom: 20%;
    right: 40%;
}

.circle9 {
    width: 25vw;
    height: 25vw;
    background-color: rgba(255, 218, 185, 0.7); /* Peach Puff */
    animation-delay: 8s;
    top: 5%;
    left: 75%;
}

.content {
    position: relative;
    text-align: center;
    z-index: 10;
    color: #333;
    width: 100%;
    max-width: 600px;
}

.contact h1 {
    font-size: 6vw;
    margin-bottom: 20px;
}

.contact p {
    font-size: 4vw;
}

.contact a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.about {
    margin-top: 20px;
}

.about h2 {
    font-size: 5vw;
    margin-bottom: 15px;
}

.about p {
    font-size: 4vw;
    line-height: 1.6;
}

/* Larger screens adjustments */
@media (min-width: 768px) {
    .circle {
        opacity: 0.9;
    }

    .circle1 {
        width: 300px;
        height: 300px;
    }

    .circle2 {
        width: 400px;
        height: 400px;
    }

    .circle3 {
        width: 500px;
        height: 500px;
    }

    .circle4 {
        width: 350px;
        height: 350px;
    }

    .circle5 {
        width: 450px;
        height: 450px;
    }

    .circle6 {
        width: 250px;
        height: 250px;
    }

    .circle7 {
        width: 150px;
        height: 150px;
    }

    .circle8 {
        width: 350px;
        height: 350px;
    }

    .circle9 {
        width: 300px;
        height: 300px;
    }

    .contact h1 {
        font-size: 36px;
    }

    .contact p {
        font-size: 18px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about p {
        font-size: 18px;
    }
}

@keyframes animateCircle {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}
