body {
  background-color: linen;
  margin: 40px; /* Adjust the margin as needed */ 
}

h1 {
  color: crimson;
  font-family: tahoma;
  }

p {
  font-family: tahoma;
  font-size: 15px;
  color: crimson
}
a {
  font-family: tahoma, helvetica, arial;
  font-size: 15px;
  color: hotpink
  
}/* unvisited link */
a:link {
  color: cornflowerblue;
  text-decoration: none
}

/* visited link */
a:visited {
  color: cornflowerblue;
  text-decoration: none
}

/* mouse over link */
a:hover {
  color: green;
  text-decoration: none
}

/* selected link */
a:active {
  color: crimson;
  text-decoration: none
}
