How to make an scrolling long text that loops over and over?

I am trying to add a marquee with css, that loops a text on top of of one of my websites, but it seems the text gets cut after a certain time, it does not loop, can’t figure out why. I was wondering if a looped text can be achieved within webflow? Or if possible check what is wrong with the script below:

<style style="text/css">
.scroll-left {
 height: 40px;	
 overflow: hidden;
 position: relative;
}
.scroll-left p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 40px;
 text-align: left;
 white-space: nowrap;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);	
 transform:translateX(100%);
 /* Apply animation to this element */	
 -moz-animation: scroll-left 25s linear infinite;
 -webkit-animation: scroll-left 25s linear infinite;
 animation: scroll-left 25s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
 0%   { 
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%); 		
 }
 100% { 
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%); 
 }
}
</style>

<div class="scroll-left">
<p><a href="https://example.com">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec facilisis, sem sed dapibus imperdiet, dolor ligula vehicula turpis, non rutrum lacus risus et diam. Morbi lobortis nunc facilisis nunc semper ullamcorper. Vestibulum aliquet fermentum turpis, feugiat accumsan nisl cursus eu. Curabitur gravida ligula iaculis augue iaculis laoreet. Vestibulum eu elit vitae augue finibus volutpat id id nulla. Donec maximus ultricies urna a iaculis. Etiam quis tellus nisl. Praesent dictum hendrerit efficitur. Aliquam interdum non ex id semper. Etiam dui dui, mollis a tincidunt at, convallis eu eros. Etiam nec urna et magna vehicula mattis. Sed massa sapien, bibendum non massa quis, consequat laoreet nis</a></p>
</div>

Here is my site Read-Only: LINK
(how to share your site Read-Only link)