createCanvas(windowWidth, windowHeight);
background(176, 120, 255);
for(let x=0; x<windowHeight; x=x+25){
circle(width/2 + map(x,0,windowHeight,0,mouseX-windowWidth/2), height/2 + map(x,0,windowHeight,0,mouseY-windowHeight/2), map(x,0,windowHeight,windowHeight,0,))
circle(map(x,0,windowWidth,0,mouseX-windowWidth/8),map(x,0,windowHeight,0,mouseY-windowHeight/8),map(x,0,height,height,0))
circle(windowWidth-map(x,0,windowWidth,0,mouseX-windowWidth/8),windowHeight-map(x,0,windowHeight,0,mouseY-windowHeight/8),map(x,0,height,height,0))
circle(windowWidth-map(x,0,windowWidth,0,mouseX-windowWidth/8),map(x,0,windowHeight,0,mouseY-windowHeight/8),map(x,0,height,height,0))
circle(map(x,0,windowWidth,0,mouseX-windowWidth/8),windowHeight-map(x,0,windowHeight,0,mouseY-windowHeight/8),map(x,0,height,height,0))