void main(){
    vec3 c = white;
    float f = voronoi(vec3(uv() * 20., speed.x * .2)).x;
    c = c- f* red;
    gl_FragColor= vec4(c, 1.0);
}