html`
<style>
#rl {
color: transparent;
background: linear-gradient(
120deg,
black 25%,
#440154,
#21908d,
#fde725,
black 75%
);
background-size: 400% 100%;
animation: shimmer 8s linear infinite;
background-clip: text;
-webkit-background-clip: text;
}
@keyframes shimmer {
0%, 45%{
background-position: 100% 0;
}
65%, 100% {
background-position: 0% 0;
}
}
</style>`