       /*
        Auteur : Leonardo Zanolari
        Date : 20/12/2024
        Description : l'histoire du jeux video et tout les themes qui l'englobe
    */ 
        
        /* type de transition 1,2 */
.transition-1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background-color: black;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-out;
}



.transition-1.is-active {
    opacity: 1;
    pointer-events: all;
}

.transition-2 {
    position: fixed;
    top: 0;
    left: 100%;
    right: -100%;
    bottom: 0;
    z-index: 101;
    background-color: black;
    transition: 0.5s ease-out;
}



.transition-2.is-active {
    left: 0px;
}

.transition-3 {
    position: fixed;
    top: 0;
    left: -100%;
    right: 100%;
    bottom: 0;
    z-index: 101;
    background-color: black;
    transition: 0.5s ease-out;
}



.transition-3.is-active {
    left: 0px;
}