.scroll-float {
    overflow: hidden;
}

.scroll-float-text {
    display: inline-block;
    /* Adjusted font-size to match the existing design or use the provided clamp if appropriate. 
     The user provided: font-size: clamp(1.6rem, 8vw, 10rem);
     However, for a section title, this might be too large. 
     I will use the provided value but might need to adjust it later. */
    font-size: clamp(1.6rem, 5vw, 4rem);
    /* Slightly reduced max size to fit better */
    font-weight: 900;
    text-align: center;
    line-height: 1.5;
}

.char {
    display: inline-block;
    will-change: opacity, transform;
    /* Optimization hint */
}