/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 25 2026 | 15:40:33 */
.gradient-text {
  background: linear-gradient(45deg, #500000, #6E0000, #840101, #980000, #AE0015);
  background-size: 400%;
  animation: text-gradient 30s ease infinite;
  padding: 5px 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes text-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}