.scroll-container {
  width: 100%;
  overflow: hidden; /* Hide the text that goes off-screen */
  white-space: nowrap;
  background: #f8f8f8; /* Optional: background color */
  padding: 10px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  animation: move-left 15s linear infinite;
}

.scroll-text span {
  display: inline-block;
  padding-right: 50px; /* Space between the two sets of text */
  font-family: sans-serif;
  font-size: 1.1rem;
  color: #333;
}

/* The Animation */
@keyframes move-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Moves exactly half the width of the inner div */
  }
}

/* Pause on hover so users can read it easily */
.scroll-container:hover .scroll-text {
  animation-play-state: paused;
}