.marquee {
  position: fixed;
  top: calc(3.2vw + 1rem);
  width: 100%;
  height: 2rem;
  white-space: nowrap;
  --gap: 1rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  background: #FF0000;
  z-index: 2147483644;
}

.marquee__content {
  margin-top: 0px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  transform: translateZ(0);
  animation: scroll 15s linear infinite;
  z-index: 2147483645;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
