/*The background color of the body is green*/
body {background-color:#009900;
}
/*The color of the h1 font is lime green*/
h1 {color:#CCFF00;
}
/*The color of the paragraph4 font class is orange*/
.paragraph4 {color:#FF9900;
}
/*The color of the paragraph5 font id is yellow*/
#paragraph5 {color:#FFFF00;
}
/*The color of the h2 font is white and overrides the internal style on the h2 in the html because of the !important*/
h2 {color:#FFFFFF !important;}