body {
  background-color:#FFB6C1;
}
h2 {
  font-size:30px;
}
p {
  font-style:normal;
}
/* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}