.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-text 30s linear infinite;
}

@keyframes marquee-text {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Restart animation immediately after it ends */

.marquee p {
  animation-iteration-count: infinite;
  padding-left: 0;
}

/* Pause animation on hover */

.marquee:hover p {
  animation-play-state: paused;
  transform: translateX(0%);
}

