@charset "UTF-8";
#ball {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 200px;
    width: 200px;
    transform: translate(-50%, -50%);
    z-index: 0;
    color: #fff;
    opacity: 0.33;
    transition: width 0.3s, height 0.3s;
    animation: zoomIn 1s ease;
}

    #ball::before,
    #ball::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 100%;
        z-index: 2;
        box-shadow: 0 0 20px 20px rgba(143, 0, 143, 1);
    }

    #ball::before {
        width: 100%;
        height: 100%;
        background-color: rgba(143, 0, 143, 1);
    }

.ball-shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    z-index: -2;
    box-shadow: 20px -60px 40px 5px rgba(255, 0, 255, 0.9), /* Magenta */
    -30px -15px 50px 20px rgba(0, 0, 153, 0.95), /* Bleu foncé */
    35px 35px 70px 0px rgba(204, 51, 255, 0.95), /* Violet clair */
    70px 10px 30px 5px rgba(0, 0, 153, 0.85), /* Bleu foncé plus léger */
    -15px -5px 100px 20px rgba(143, 0, 143, 0.98); /* Violet intense */
    animation: shadow-rotate 5s linear infinite;
    transform-origin: center;
}

@keyframes zoomIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.33;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.33;
    }
}

@keyframes circle-size {
    from {
        width: 200px;
        height: 200px;
    }

    to {
        width: 250px;
        height: 250px;
    }
}

@keyframes shadow-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/*over ride por afficher laballe par dessus */
.section-accueil {
    position: static;
}