.verTextos {
    animation-duration: 1.75s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-name: slidein;
}

.verImagenes {
    animation-duration: 0.75s;
    animation-iteration-count: 15;
    animation-name: fadein;
}

.verAjedrez {
    animation-duration: 10s;
    animation-iteration-count: 1;
    animation-name: fadeAjedrez;    
}


/* efecto test animacin de objeto 2024 */
@keyframes slidein {
    from {
        margin-left: -400%;
    }
    to {
        margin-left: 0%;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeAjedrez {
    from {
        transform: scale(0, 0);
    }
    to {
        transform: scale(1, 1);
    }
}
