/* Make all body text dark green-colored 12 point Antiqua with 16-point vertical spacing between lines of text and 10-point margins. Use background1.jpg as the background.
*/
body {font-size: 16pt;
      font-family: "Times new roman";
      color: black;
      background: url(images/background2.jpg);
      line-height: 16pt;
      margin-left: 10pt;
      margin-right: 10pt;}

/* Make headings Arial with generous line spacing.
   .
*/
h1 {font: 24pt Arial;
    font-weight: bold;
    line-height: 30pt;}

h2 (font: 21pt Arial;
    font-weight: bold;
    line-height: 22pt;}

/* Don't underline links, and make all links black.
   Make links flash red when activated.
*/



a:active {color:red;}
a:visited {color:blue;}
a:link {color: blue;}
a {text-decoration: none;}