/* stylesheet.css for assignment 3 */

/* body text and page background */


body {
  font-family:"Book Antiqua", Times, Serif;
  color:#0000cd;
  background-color:#ddffff;
  }

/* level 1 headings */
  
h1 {
  font-family: Papyrus, "Curlz MT", "Juice ITC", Algerian, fantasy;
  font-weight:bold;
  text-align:center;
  color:#1F2159;
  }

/* level 2 headings */

h2 {
  font-family: "Arial Black", Impact, Charcola, fantasy;
  color:#1F2159;
  }

/* level 3 headings */

h3 {
  font-family:Arial, Helvetica, sans-serif;
  font-style:italic;
  text-decoration:underline;
  color:#1F2159;
  }

/* generic style class for highlighting text */

.hilite {
  background-color:#ffff00;
  }

/* paragraphs styled as tips */

p.tip {
  background-color:#ACD095;
  margin-left:100px;
  margin-right:100px;
  padding:5px;
  border:solid thin #167A58;
  }
  
/* paragraphs styled as warning */

p.warning {
  background-color:#FFCCFF;
  margin-left:100px;
  margin-right:100px;
  padding:5px;
  border:solid thin #ff0000;
  }

 
/* Back to home link */

a.backtohome
{
  font-family: arial, helvetica;
  font-weight: bold;
}

a.backtohome:link
{
  color: black;
  text-decoration: none;
}

a.backtohome:visited
{
  color: black;
  text-decoration: none;
}

a.backtohome:hover
{
  color: black;
  text-decoration: underline;
}

a.backtohome:active
{
  color: red;
  text-decoration: underline;
}