.scrolling-text-container {
  width: 100%; /* Or a specific width */
  overflow: hidden;
  Margin: 0 auto;
  white-space: nowrap;
  Background-color: #00c4b3;
}

.scrolling-text {
  display: inline-block;
  animation: scrollText 10s linear infinite; /* Adjust duration as needed */
  Font-size: 20px;
  Color: white;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
