.marquee-wrapper {
  width: 100%;
  overflow: hidden;   
  padding: 10px 0;
}

.marquee {
  display: inline-block;
  white-space: nowrap;       
  animation: marquee 450s linear infinite; 
}

.marquee span {
  font-size: 50px;
  font-weight: bold;
  color: #87fcc31a;      
  margin-right: 5px;     
}

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


