.motion-boundary {
    min-height: 100vh;
}

.marquee {
    overflow: hidden;
    padding: 5vh 0 9vh;
    color: rgba(20, 20, 18, 0.72);
}

.marquee__track {
    display: flex;
    width: max-content;
    gap: 36px;
    animation: marquee 22s linear infinite;
}

.marquee span {
    font-size: clamp(3rem, 9vw, 10rem);
    font-weight: 950;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
