body {background-color:#FFC;
text-color:#FFF;
font-family:Impact, "Baskerville Old Face", "Times New Roman", "Traditional Arabic";
font-size:20px;
}
/*these three changes to the body cover the first three requirements and the requirement
that asks for a change to the size of the body*/

h1, h2 {color:#999
}
/*this is the example from the lesson that covers to selectors*/
h1 {border-bottom: 1px solid black;
}
/*this makes the border 1 pixel as a solid black line*/
p {color:#600;
}
p.greentea {color: green;
text-decoration:blink;
}
/*this is the "Dealer's Choice text decorations"*/
P.raspberry {
	color: blue;
}
p.blueberry {color:purple;
}
/*above are the classes for the drink fonts*/
p.directions {color:#C33;
}
/*the color that changes the directions overrides a default style*/
p.directionslink {font-size:2em;
}
/*this changes the font without using a pixel size*/


