I'd like the title to have those red/orange colors in the text to alternate throughout in an infinite loop, like a range, in a loop, no slowing down. right now it's just hiding the text in a loop.
I tried to switch around with the linear gradient but couldnt figure it out On the right track: http://recordit.co/HFknq7M2TB I want those colors but infinitely and no slowing. Just continuous range from left to right.
.landtitlep {
margin-bottom: 5%;
background: linear-gradient(to right, #ff6600 10%, #800000 70%, #cc0000 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 10vw;
font-family: "Poppins", sans-serif;
text-align: center;
background-clip: text;
animation-name: shimmer;
animation-duration: 7s;
animation-iteration-count: infinite;
animation: shimmer 7s infinite;
/*background-repeat: no-repeat;*/
text-align: center;
background-size: 70% 100%;
background-clip: text;
animation-name: shimmer;
animation-duration: 2s;
animation-iteration-count: infinite;
background-repeat: no-repeat;
background-position: 0 0;
background-color: linear-gradient(to right, #ff6600 10%, #800000 70%, #cc0000 100%);
}
@keyframes shimmer {
0% {
background-position: top left;
}
100% {
background-position: top right;
}
}