/* Localized animated gradient for subtitle */

#subtitle {
  background: linear-gradient(-45deg, #ee7752, #ce3e75, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  -webkit-animation: Gradient 10s ease infinite;
  -moz-animation: Gradient 10s ease infinite;
  animation: Gradient 10s ease infinite;
  -o-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#subtitle:before {
  background-color: rgba(0, 0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  #subtitle {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    animation: none !important;
    background-size: 100% 100%;
  }
}
