main {
    width: 60%;
}

.glass-panel.taille-fixe {
    height: 70vh;
}

.container-animation {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 12px;
    background: linear-gradient(190deg,#00000050 0%, #00000030 100%);
    padding: 4px;
}

.partie-graphisme {
    display: flex;
    flex: 1;
    width: 100%;
    margin: 4px;
    justify-content: center;
    align-items: center;
}

.partie-texte {
    height: 16%;
    margin: 4px;
}

.partie-texte blockquote {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-style: normal;
    margin: unset;
}

/* grosses animations */
.partie-graphisme .boite {
    display: flex;
    width: 40%;
    height: 50%;
    border: 2px solid #50505080;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;

    background: linear-gradient(110deg, #17172660, #12121c60, #20203660);
    background-size: 200% 200%;
    animation: fondBlockquote 8s ease-in-out infinite;

    justify-content: center;
    align-items: center;

    transition: all 1000ms ease-in-out;

    p {
        display: block;
        cursor: inherit;
        opacity: 0.8;
        text-align: center;
    }
}

.partie-graphisme .boite.petit {
    width: 25%;
    height: 35%;
}

.partie-graphisme .fleche {
    all: unset;
    overflow: clip;
    width: 128px;
    height: 128px;
}

/* styles par defaut */
#fonctionnementEnvoyerSite {
    transform: translateX(50%);
    transition: all 1000ms ease-in-out;
}

#flecheEnvoyerSite,
#fonctionnementRecevoirServeur {
    opacity: 0;
    transition: all 1000ms ease-in-out;
    pointer-events: none;
}

#flecheEnvoyerSite {
    transform: translateX(-40px);
}

#fonctionnementRecevoirServeur {
    transform: translateX(-20px);
}

/* stade specifique */

.stade1 {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
}

#fonctionnementEnvoyerSite.stade1 {
    cursor: default;
}
/**/
#fonctionnementEnvoyerSite.stade2 {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-20%);
}

#fonctionnementRecevoirServeur.stade2 {
    pointer-events: auto !important;
    opacity: 1;
    transform: translateX(-65%);
    width: 40%;
    height: 50%;
}
/**/
#fonctionnementRecevoirServeur.stade3 {
    transform: translateX(-100%) translateY(60%);
}

/* partie 2 hdjfdsjkhf */
#imageServeur,
#flecheServeurVersAI,
#codeProjectAI {
    display: none;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 1000ms ease-in-out;
    pointer-events: none;
}

/* apparition */
.stade4 {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
    pointer-events: auto !important;
}

/* grossissement */
#imageServeur.stade5 {
    cursor: default !important;
}

#codeProjectAI.stade5 {
    transform: scale(1.3);
    cursor: default;
}

#flecheServeurVersAI.stade5 {
    opacity: 1 !important;
    transform: scale(1) translateY(0) rotate(-180deg) !important;
    pointer-events: auto !important;
    cursor: default;
}

/* retour vers utilisateur */
.stadeRetour {
    transform: translateX(-200%) scale(0.8);
    opacity: 0;
}

/* aaaaaaaaaaaaa */
.pasClic {
    cursor: default !important;
}

img.imageDemoVoiture {
    position: absolute;
    display: block;
    width: 55%;
    border: 2px solid #50505080;
    background: linear-gradient(190deg,#00000050 0%, #00000030 100%);
    transform: translate(60%, 90%) !important;
}