<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.marquee {
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

.marquee p:after {
    content: "";
    white-space: nowrap;
    display: inline-block;
}

.marquee p {
    margin: 0;
    padding-left: 100%;
    display: inline-block;
    white-space: nowrap;
    animation: marquee 8s linear infinite;
}

@keyframes marquee {
    from   { transform: translate(0%);}
    99%,to { transform: translate(-100%);}
}</pre></body></html>