.scrolling-text {
    color: white;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 8em;
    font-style: italic;
    &:nth-child(odd) {
        animation: MoveLeft 24s -12s infinite linear;
    }
    &:nth-child(even) {
        animation: MoveLeft2 24s infinite linear;
    }
}

@keyframes MoveLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes MoveLeft2 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}