.pride {
  font-weight: bold;
  font-size: 1.2em;
  background: linear-gradient(
    90deg,
    red 0%,
    orange 14.28%,
    yellow 28.56%,
    green 42.84%,
    blue 57.12%,
    indigo 71.4%,
    violet 85.68%,
    red 100%
  );
  background-size: 200% 100%;
  background-repeat: repeat-x;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbow-slide 5s linear infinite;
  display: inline-block;
}

@keyframes rainbow-slide {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
