.scrollingText {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    animation: marquee 30s linear infinite;
    color:white
  }
  
  @keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  