fullscreen void setup(){
size(640, 360); //resizing window
background(165,293,4);//setting background color
text("Nicholas", 280,180);
}
void draw(){
if(mousePressed == true){
background(250,230,100);
line(320,180,340,180);
text("Nicholas J. Brown", 280,180);
fill(201,36,87);
}
}