int x = 30; PFont fontA; void setup() { size(1080, 1920); background(0); noLoop(); } void draw() { fill(255); textSize(240); text("Hello", x, 60); textSize(120); text("Android", x, 95); text("Processing", x, 130); textSize(90); text("T9T9 planet", x, 165); }