void main(){
    vec3 c = white;
    c -= step(.5, vfbm(vec2(uv().x, phi()+speed.x*.05), 5)) * white;
    gl_FragColor= vec4(c, 1.0);
}