// DRAW BOX
size( 600, 600);

// coloring sky
background( 0,191,255);

// DRAWING AND COLORING SUN
fill( 255,255,0);
ellipse( 50,50, 90,90); 

//drawing grass
fill(0,128,0);
rect(0,400, 600,400);

//drawing tree trunk & leaves & branches
fill(139,69,19);
rect(25,200,50,200);
fill(107,142,35);
ellipse(50,200,150,50); 
line(50,300,110,300);
line(50,350,110,350);
line(50,250,110,250);

//creating house & coloring
fill(25,25,112);
rect(485,350,100,50);
fill(138,43,226);
triangle(485,350,585,350,535,240);

//creating gold hero basic
fill(225,215,0);
rect(300,300,50,100);
ellipse(325,270,60,60);

//creating black dog
fill(0,0,0);
ellipse(210,500,125,50);
fill(0,0,0);
ellipse(135,500,50,50);
line(200,500,250,550);
line(150,500,200,550);
line(170,500,210,550);
line(220,500,260,550);

//Text name in lower right and title in center
textSize(40);
fill(0,0,0);
text("Welcome to my home",150,150);
textSize(30);
fill(139,0,139);
text("Gary Munoz-Villarreal",270,575);
