/* CSS Document */
* { margin:0; padding:0; }
body {
  margin:8px;
  padding:0px;
  /* border:solid 1px red; */
  color:DarkGreen;
  background-color:SeaShell;
}
h1 {
  border:solid 3px red;
  color:SeaShell;
  background-color:DarkGreen;
  margin:0.5ex 0;
  padding:0.8ex;
  font-family:cursive;
  font-size:26pt;
  text-align:center;
  text-decoration:underline;
  text-shadow: 8px -6px 4px Silver;
  /* border-radius:24px 0 0 0; */
  border-top-left-radius:32px;
  border-bottom-right-radius:32px;
}
h2 {
  font-family:cursive;
  border:solid 3px DarkGreen;
  border-radius:24px;
  padding-left:1em;
  width:35%;
  margin-top:1ex;
  background-image:linear-gradient(to right,yellow,seashell,red);
}
p {
  /* border:solid 1px green; */
  text-align:justify;
  text-indent:1.5em;
  margin-bottom:4px;
}
