/* animations.css */
@keyframes textScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.scroll-text {
  animation: textScroll 15s linear infinite;
}

