.scrolling-text {
    width: 100%;

    position: absolute;
    bottom: 5vw;

    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.scrolling-text__text {
    display: inline-block;
    padding-left: 100%;
    
    color: rgb(118, 255, 141);
    
    font-size: 0.4vw;
    font-family: Stasmic;
    letter-spacing: 0.1vw;
    word-spacing: 1vw;
    
    animation: scroll 80s linear infinite;
    
    mix-blend-mode: difference;
}