//This quote is from a song by The Strokes called "Ize of the World." 
//I wanted to make a statement to show that people have so much power
//yet we don't use it for the things that are most important. People
//only use their power to get more power in the end.

PFont bell;
PImage b; 

void setup() {
  size(400,400);
  smooth();
  bell=loadFont("BellMTBold-35.vlw");
  textFont(bell);
}

void draw() {
  b =loadImage("oildrill.gif");
  image(b,0,0);
  fill(32, 17, 12);
  
  textSize(22);
  text("To see such power in our hands",10, 30); 
  fill(244, 182, 159);
  textSize(35);
  text("all wasted on greed", 92, 370);
}
Exercise 04: Use the text() function to draw a sentence to the screen and use the image() function to draw one or more image(s). Carefully select the image(s), sentence, and composition. Explain your concept as a comment at the top of the code.