/* Custom Animations */
.animate-scroll {
  animation: scroll 30s linear infinite;
}

.pause-on-hover:hover .animate-scroll {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Base Styles */
html {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
