html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ffffff;
}

.contendor-marquesina {
    overflow: hidden;
    width: 100%;
}

.track-marquesina {
    display: flex;
    width: max-content;
    animation: loop-infinito 25s linear infinite;
}

.track-marquesina span {
    padding: 0 40px;
    white-space: nowrap;
}

@keyframes loop-infinito {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal,
.revelar {
    will-change: transform, opacity;
}
