.runline-container {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    background-color: #171717;
}

.runline-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.runline-text {
    font-size: 18px;
    line-height: 26px;
    white-space: nowrap;
    font-family: "Inter", monospace;
    font-weight: 200;
    padding: 18px 0px;
    background-color: transparent;
    color: #acacac;
    flex-shrink: 0;
    /* impedisce la compressione */

}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--scroll-width)));
    }
}