/*Set the font type for all the descendents of body*/
body {
  font-family:   sans-serif;
}
/*Headers h1 and h2 have grey font*/
h1, h2 {
    color:         grey;
}
/*h1 is underlined*/
h1 {
    border-bottom: 1px solid black;
}
/*default <p> is maroon coloured font*/
p {
    color:         maroon;
}
/*This rule selects all members of the lime class*/
.lime {
    color:         green;
}
/*This rule selects <p> in the lime class*/
p.lime {
    color:         green;
}
p.strawberry {
    color:         pink;
}
p.orange {
    color:         orange;
}
p.swirl {
    color:         purple;
}
