/* Home page */

.highlight-text {
  background-image: linear-gradient(
    90deg,
    hsl(352 82% 28%) 0%,
    hsl(352 82% 28%) 28%,
    hsl(352 83% 36%) 34%,
    hsl(352 84% 46%) 38%,
    hsl(352 83% 36%) 42%,
    hsl(352 82% 28%) 50%,

    hsl(352 82% 28%) 50%,
    hsl(352 82% 28%) 78%,
    hsl(352 83% 36%) 84%,
    hsl(352 84% 46%) 88%,
    hsl(352 83% 36%) 92%,
    hsl(352 82% 28%) 100%
  );
  background-size: 200% 100%;
  background-position: 60% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: highlightSweepLoop 4.2s ease infinite;
}

@keyframes highlightSweepLoop {
  0% {
    background-position: 60% 50%;
  }

  18% {
    background-position: 60% 50%;
  }

  82% {
    background-position: -40% 50%;
  }

  100% {
    background-position: -40% 50%;
  }
}
