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

.bod {
    height: 700px;
    background-color: black;
    overflow: hidden;
}

.containerblur {
    position: relative; /* Conteneur pour la boule */
    width: 100%;
    height: 100%;
}

.ball {
    position: absolute;
    width: 700px;
    height: 700px;
    background-color: #cc323f58;
    border-radius: 50%;
    filter: blur(200px);
    pointer-events: none;
    
    /* Animation de respiration */
    animation: breathing 3s ease-in-out infinite, move 15s ease-in-out infinite;
}

/* Animation pour l'effet de respiration (changement de taille) */
@keyframes breathing {
    0%, 100% {
        transform: scale(1.7);
    }
    50% {
        transform: scale(1); /* La boule grossit à 130% de sa taille */
    }
}

/* Animation pour le déplacement lent de la boule */
@keyframes move {
    0% {
        top: 20%; left: 20%;
    }
    25% {
        top: 40%; left: 60%;
    }
    50% {
        top: 0%; left: -40%;
    }
    75% {
        top: 70%; left: 50%;
    }
    100% {
        top: 20%; left: 20%;
    }
}


