/* Basic body styling for contrast */
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #222;
margin: 0;
}
.animated-gradient-text {
font-size: 4rem;
font-family: Arial, sans-serif;
font-weight: bold;
background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
background-size: 200% auto;
color: #fff; /* Fallback for browsers that don't support background-clip */
background-clip: text;
-webkit-background-clip: text;
text-fill-color: transparent;
-webkit-text-fill-color: transparent;
animation: gradient-flow 4s linear infinite;
display: inline-block; /* Ensures background-clip works correctly */
}
@keyframes gradient-flow {
0% {
background-position: 0% center;
}
100% {
background-position: 200% center;
}
}