.ticker {
    overflow: hidden;
    white-space: nowrap;
     /* Example background color */
    padding: 10px;
  }
  
  .ticker-text {
    display: inline-block;
    padding-left: 100%; /* Start offscreen to the right */
    animation: scroll-left 20s linear infinite;
    
  }
  
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  