/* Center content */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #1e1e1e;
  font-family: Arial, sans-serif;
}

/* Animated Text */
.color-changing-text {
  font-size: 144px;
  font-weight: bold;
  background-image: linear-gradient(90deg, red, orange, yellow, green, cyan, blue, violet);
  -webkit-background-clip: text;
  color: transparent;
  animation: color-shift 5s infinite linear;
}

/* Keyframes for continuous color shift */
@keyframes color-shift {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}