/* File:   style.css
   Author: Gregory Weber
   Date:   February 16, 2008
   This is a CSS comment */

/* Rules matching element types */

body {
  background-color: teal;
  border-width: 0.25in;
  border-style: solid;
  border-color: rgb(32, 64, 64); /* very dark bluish gray */

  /* margin is outside the border;
     padding is inside */
  margin: 0;
  padding: 8px;
}

div {
  margin: 30px;
  padding: 10px;  
}

h1 {
  /* In case a font is not available, we may list several,
     in order of preference */
  font-family: KacstTitleL, Serif;
  font-variant: small-caps;

}

h2 {
  font-family: URW Chancery L, Serif;
}

p {

}

li {

}

/* Rules matching #id */

#counting {
  background-color: rgb(181, 213, 255); /* light blue */
  border: thick groove #efe8e4; /* light pinkish gray */

  text-align: center;
  font-family: fkp, Sans-Serif;

  }

/* Matching element#id */

div#eating {
  background-color: #0abbbb; /* lightened teal */
  border: thin dotted rgb(247, 255, 101);  /* light yellow */
  font-family: Marumoji, Monospace;
  font-style: italic;
}

/* Rules matching .class */

.vegetable {
  color: green;
  font-family: URW Palladio L, Arial, Serif;
  font-size: 18pt;
}

.meat {
  color: rgb(199, 69, 56); /* dark red */
  font-family: eufm10, Cursive;
  font-size: 150%;
}


/* Rules matching element.class */


span.jealous {
  background-color: rgb(182, 153, 89); /* tan */
  color: #33ff33;  /* light yellowish green */
  margin: 3px;
  padding: 6px;

  font-family: PakTypeNaqsh, Monospace;
  font-size: 150%;
}

