// simple and clean, bubbles floating. i originally tried // to make it so the background would change as you clicked it // but couldn`t figure it out. size(300, 400, P3D); background(0); PImage b; b = loadImage("CIMG1736edit.jpg"); image(b, 0, 0); filter (BLUR, .3); noStroke(); directionalLight(153, 153, 153, .5, 0, -1); ambientLight(153, 102, 0); ambient(150, 175, 10); translate(110, 175, 10); sphere(30); translate(70, 50, 0); sphere(21); translate(60, 30, 0); sphere(8); translate(-200, -150, 0); sphere(18); translate(-20, -37, 0); sphere(7);