/* basic element styling*/
body
{
  font-family: "AmstelvarAlpha", serif;
  font-family: "Times New Roman", serif;
}

h1
{
  color: pink;
  text-align: center;
}

h2
{
  text-decoration: underline;
}

h3
{
  font-style: italic
}

p
{
  padding-left: 200px;
  padding-right:200px;
}

.writinghead {
  color: black;
  text-align: center;
  font-size: 24pt;
  font-family: "AmstelvarAlpha", serif;
  font-weight: bold;
  word-spacing: 1em;
}

/* for lists*/
.listheading
{
  text-decoration: underline
}

/*quotations*/
.sample {
  font-style: italic;
  color: darkgray;
  text-align: center;
}

/*link behavior*/
a:link {
  color: pink;
}

a:visited {
  color: darkred;
}

a:hover {
  text-decoration: none;
}