/* CSS: 1.1. stylesheet for first homework assignment
This creates rules for the body, h1, h2 and p selectors. I also stipulated a size for h3, to make it fit in with the text font and size.
For this exercise I have stipulated the font size for headings as percentages of the basic para size. */

body {background:#EAEAEA; font-family: Verdana, Arial, sans-serif; font-size:0.8em;}
h1 {color:green; font-size: 160%;}
h2 {color:maroon; font-size: 110%;}
h3 {font-size: 100%;}
p {font-family: Georgia, "Times New Roman", serif;}
