body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
  font-family: bold;
}

p {
  font-family: verdana;
  font-size: 20px;
  margin-left: 80px;
  margin-right: 80px;
}
/* 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;
}

