/*This Webpage is really about nothing */




H1       {color:blue; font-family: roman}
H2       {color:white; font-family: roman}
H3       {letter-spacing: 5px; color:purple}



P        {color: white ; font-family: verdana}  / *this describes the font (Verdana) used
                                     The first (p) paragraph */


/* If we want to have a second paragraph of different properties we need different
classes*/

P.first {color: white} /*color of the text will be white


P.second {color: DarkRed;text-indent: 2em}

body   { font-size: 10pt; font- family: verdana; color:black}       /*these properties will be found between the body 
tags*/ 

body {color:Blue4}


a:link    { color: blue }    /* unvisited links */

a:visited { color:purple}   /* visited links   */

a:hover   { color: black; cursor: hand} /* user hovers     */

a:active  { color: lime }   /* active links    */

a.sec:link, a.sec:visited, a.sec:active {font-size:15px; text-decoration: none; color:purple}
   
a.sec:hover {font-size:15px; text-decoration: underline; color:aqua; cursor: hand}





























