.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  margin-right: 1.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.scroll-text {
  color: var(--bs-secondary-color);
  font-size: small;
  display: inline-block;
  padding-right: 1.5rem;
  animation: scroll-left 180s linear infinite;
}

@keyframes scroll-left {
  to {
    transform: translateX(-100%);
  }
}

