body {
  background-color: lightpink;
}
.cont {
  color: darkmagenta;
  font-size: 35px;
  text-align: justify;
  font-family: Brush Script MT;
}
.link {
  margin-left: 150px;
  font-size: 30px;
  border:4px outset;
  border-radius: 10px;
  font-family: serif;
  font-weight: bolder;
  color: indigo;
  text-decoration: none;
  background-color: tan;
  transition: color .8s, background-color .9s, border 1s;
}
.link:hover {
  color:darkred;
  background-color: lightskyblue;
  border: 4px inset;
}
.cont, h1 {
  font-family: cursive;
}