body {
  background-color: white;
  font-family: comic sans ms,helvitica,sans-serif;
  font-size: 80%;
  margin-right: 5px;
  margin-left: 5px;
}
h1 {
  color: blue;
  font-variant: small-caps;
}
h2 {
  background-color: transparent;
  text-align: center;
  font-variant: small-caps;
}
p {
  background-color: #fa00cd;
  color: white;
}
p.dotted {
  border-style: dotted;
}
p.dashed {
  border-style: dashed;
}
p.solid {
  border-style: solid;
}
p.double {
  border-style: double;
}
p.groove {
  border-style: groove;
}
p.ridge {
  border-style: ridge;
}
p.inset {
  border-style: inset;
}
p.outset {
  border-style: outset;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  color: #ff00ff;
}
a:active {
  color: blue;
}
p.uppercase {
  text-transform: uppercase;
}
p.lowercase {
  text-transform: lowercase;
}
p.capitalize {
  text-transform: capitalize;
}
p.normal {
  font-variant: normal;
}
p.small {
  font-variant: small-caps;
}
