.marquee {
/*   background-color: #ddd; */
/*   width: 500px; */
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}
.marquee span {
  display: inline-block;
  font-size: 20px;
  position: relative;
  left: 100%;
  animation: marquee 20s linear infinite;
}
/* .marquee:hover span {
  animation-play-state: paused;
} */

.marquee span:nth-child(1) {
  animation-delay: 0s;
}
.marquee span:nth-child(2) {
  animation-delay: 0.3s;
}
.marquee span:nth-child(3) {
  animation-delay: 0.6s;
}
.marquee span:nth-child(4) {
  animation-delay: 0.9s;
}
.marquee span:nth-child(5) {
  animation-delay: 1.2s;
}
.marquee span:nth-child(6) {
  animation-delay: 1.5s;
}
.marquee span:nth-child(7) {
  animation-delay: 1.8s;
}
.marquee span:nth-child(8) {
  animation-delay: 2.1s;
}
.marquee span:nth-child(9) {
  animation-delay: 2.4s;
}
.marquee span:nth-child(10) {
  animation-delay: 2.7s;
}

@keyframes marquee {
  0%   { left: 100%; }
  100% { left: -100%; }
}