/* body will be black with white color, in the Times font at 12pt font*/
body {
    background-color:Black;
    color:#5a4a73;
    Font-family:Times, Arial, Sans-serif, Comic;
    font-size:12pt;
}
/* border for h1 will be a solid black box*/
h1 {
    border:1px solid black;
}
/* H2 may be larger than h1 and it will be underlined and a cool blue*/
h2 {
    Font-size:24pt;
    color:#00ccff;
    Text-decoration:underline #00ccff;
}
/* class 1 for green paragraph*/
.Greentea {
    color:Green;
}
.Raspberry {
    color:Purple;
}
.Blueberry {
    color:navy;
}
.Cranberry {
    color:red;
} 
a {
color:lime;
}
a:hover {
    text-decoration:none;
    Font-size:2em;
    color:yellow;
}
