xxxxxxxxxx
38
function setup() {
createCanvas(500, 500);
}
function draw() {
background(82,180,232);
stroke('black');
strokeWeight(4);
fill(135, 124, 115);
rect(0, 360, 500, 300);
fill('white');
rect(120,300,231,150);
fill(221,134,76);
rect(120,400,231,50);
fill(121, 128, 123,300)
strokeWeight(4);
rect(120,330,48,70);
rect(168,330,48,70);
rect(213,330,48,70);
rect(258,330,48,70);
rect(303,330,48,70);
fill(221,134,76);
rect(95, 280, 280, 20, 5);
strokeWeight(1);
fill(239,206,171);
ellipse(230,177,200,200);
fill(82,180,232);
ellipse(230,180,70,70);
}