<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.animation-moveRight {
    animation: moveRight 1s ease-in-out;
}

.animation-moveLeft {
    animation: moveLeft 1s ease-in-out;
}

.animation-fadeIn {
     animation: fadeIn 1s ease-in-out;
 }

.animation-fadeOut {
    animation: fadeOut 1s ease-in-out;
}

.animation-shifting {
    animation: shift 3.5s infinite linear;
}

.animation-shifting2 {
    animation: shift 1.5s infinite linear;
}

.animation-shifting3 {
    animation: shift 4s infinite linear;
}

.animation-shifting4 {
    animation: shift 2s infinite linear;
}

.animation-shifting5 {
    animation: shift 4s infinite linear;
}

.animation-shifting6 {
    animation: shift 5s infinite;
}

.visibility-none {
    opacity: 0;
}

@keyframes moveRight {
    from {
        transform: translate(-200px, 0);
        opacity: 0;
    }

    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes moveLeft {
     from {
         transform: translate(200px, 0);
         opacity: 0;
     }

     to {
         transform: translate(0, 0);
         opacity: 1;
     }
 }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes shift {
    from {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(3px, 0);
    }

    50% {
        transform: translate(0, 0);
    }

    75% {
        transform: translate(-3px, 0);
    }

    to {
        transform: translate(0, 0);
    }
}


</pre></body></html>