<style>
.text-bg-image {
background-image: url(https://images.unsplash.com/photo-1528722828814-77b9b83aafb2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2670&q=80);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
color: #ffffff;
animation: animate-bg 30s ease infinite;
}
@keyframes animate-bg {
0% {
background-position: center 25%;
}
50% {
background-position: center 50%;
}
100% {
background-position: center 25%;
}
}
</style>