.scrolling-text-container {
    width: 100%;
    overflow: hidden;
    background-color: white;
  }
  
  .scrolling-text {
    white-space: nowrap;
    animation: scrolling 20s linear infinite;
    color: red;
  }
  
  @keyframes scrolling {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }