<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.fadein {
    animation-name: fadein;
    animation-duration: 1s;
/*    animation-iteration-count: infinite;*/
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}</pre></body></html>