#containerName {
    position: relative;
    width: 100%;
    height: 108vh;
    overflow: hidden;
    background-color: black;
    cursor: cell;
}

.shape {
    position: absolute;
    width: 40%;
    z-index: 1;
    transition: all 0.5s ease;
}

.trail-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: clamp(20px, 4vw, 50px);
    height: clamp(20px, 4vw, 50px);
    border-radius: 50%;
    border: solid black 5px;
    pointer-events: none;
    background: white;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    mix-blend-mode: difference;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transition: left 0.08s ease, top 0.08s ease, opacity 0.3s ease, transform 0.2s ease;
}

.scroll-arrow {
    font-size: clamp(10px, 2vw, 28px);
    color: black;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.trail-leader.active .scroll-arrow {
    opacity: 1;
}

.trail-leader {
    opacity: 1 !important;

}


.shape.actif {
    width: 15%;
    transition: all 0.5s ease;
}

stop[offset="1"] {
    stop-color: #0084ff;
    transition: all 0.5s ease;
}

.actif stop[offset="1"] {
    stop-color: #0084ff;
    transition: all 0.5s ease;
}

.grand {
    width: 30%;
}

#top-left {
    top: calc(-65vw + 15vh);
    left: -4vw;
}

#top-right {
    top: calc(-65vw + 15vh);
    right: -4vw;
}

#top-center {
    top: -5vw;
    right: 35vw;
}

#bottom-left {
    bottom: 0;
    left: calc(-16vw + 2vh);
}

#bottom-right {
    bottom: 0;
    right: 30vw;
}

#bottom-center {
    bottom: calc(-35vw + 0vh);
    right: calc(-16vw + 2vh);
}

.shape.actif.top-left {
    transform: translate(calc(5vw + 5vh), calc(50vw + 38vh));
}

.shape.actif.top-right {
    transform: translate(calc(-81vw + 5vh), calc(51.5vw + 38vh));
    width: 11%;
}

.shape.actif.top-center {
    transform: translate(calc(-48.4vw + 5vh), calc(5vw + 54vh));
    transition: all 0.5s ease;
    width: 8%;
}

.shape.actif.bottom-left {
    transform: translate(calc(93.5vw - 6vh), calc(15vw - 55vh));
    transition: all 0.5s ease;
    width: 20%;
}

.shape.actif.bottom-right {
    transform: translate(calc(30vw - 4.5vh), calc(-55vh + 5vw));
}

.shape.actif.bottom-center {
    transform: translate(calc(-22vw - 2vh), calc(-22vw - 55vh));
    width: 20%;
}

#prenomCont {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    top: 50%;
    left: 50%;
    color: #ffffff;
    transform: translate(-50%, -50%);
}

#prenom {
    font-size: calc(3vw + 2vh);
    z-index: 1;
    color: #ffffff;
    position: relative;
    margin-bottom: 20px;
}

#prenom::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    transform-origin: center;
    border-radius: 10px;
    animation: breathe 2.5s linear, breathe2 2.5s infinite alternate 2.5s;
    background: linear-gradient(to right, #F9FBE7, #939393, #F9FBE7, #6f6f6f, #F9FBE7);
}

.logoCont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 60%;
}

.logo2 {
    width: 4vw;
    height: 4vw;
    min-width: 50px;
    min-height: 50px;
    fill: white;
    transition: all 0.3s ease
}

.logo2:hover {
    fill: rgba(255, 255, 255, 0.842);
    transition: all 0.3s ease
}

@keyframes breathe {
    0% {
        transform-origin: center;
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(0.5);
        transform-origin: center;
    }
}

@keyframes breathe2 {
    0% {
        transform-origin: center;
        transform: scaleX(0.5);
    }

    100% {
        transform: scaleX(1);
        transform-origin: center;
    }
}

@media (max-width: 950px) {
    .logoCont {
        flex-direction: column;
        
    }
}

@media (max-width: 450px) {
    .trail-dot  {
        display: none;
    }

    .scroll-arrow{
        display: none;
    }
}