.circles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    --color-1: var(--color-primary-1);
    --color-2: var(--color-primary-2);
    --color-3: var(--color-secondary-1);
    --color-4: var(--color-secondary-2);
        background-image: linear-gradient( 60deg,
        color-mix(in hsl, var(--color-4), black 10%),
        color-mix(in hsl, var(--color-2), black 10%)
        );
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 700px;
    height: 700px;
    background: var(--color-1);
    opacity: 0.3;
    top: -20%;
    left: -5%;
    animation-duration: 55s;
    animation-delay: -8s;
}

.circle-2 {
    width: 800px;
    height: 800px;
    background: var(--color-2);
    opacity: 0.4;
    top: -40%;
    right: -20%;
    animation-duration: 64s;
    animation-delay: -32s;
}

.circle-3 {
    width: 500px;
    height: 500px;
    background: var(--color-3);
    opacity: 0.35;
    bottom: -35%;
    right: -10%;
    animation-duration: 56s;
    animation-delay: -14s;
}

.circle-4 {
    width: 600px;
    height: 600px;
    background: var(--color-2);
    opacity: 0.25;
    bottom: -20%;
    right: 15%;
    animation-duration: 62s;
    animation-delay: -18s;
}

.circle-5 {
    width: 720px;
    height: 720px;
    background: var(--color-2);
    opacity: 0.3;
    top: -20%;
    left: -40%;
    animation-duration: 54s;
    animation-delay: -3s;
}

.circle-6 {
    width: 600px;
    height: 600px;
    background: var(--color-4);
    opacity: 0.25;
    bottom: -5%;
    left: -5%;
    animation-duration: 60s;
    animation-delay: -21s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(240px, -240px);
    }
    40% {
        transform: translate(130px, -130px);
    }
    60% {
        transform: translate(-30px, 90px);
    }
    80% {
        transform: translate(-50px, 20px);
    }
}
/* @media (max-width: 768px) {
    .circle-1, .circle-5 {
        width: 600px;
        height: 600px;
    }

    .circle-2, .circle-3 {
        width: 350px;
        height: 350px;
    }

    .circle-4, .circle-6 {
        width: 500px;
        height: 500px;
    }
} */

@media (max-width: 480px) {
    .circle {
        transform: scale(.9);
    }
}