.header {
  position: absolute;
  top: 5%;
  left: 5%;
}
.title {
  position: absolute;
  top: 15%;
  left: 10%;
}
.content {
  position: absolute;
  top: 23%;
  left: 10%;
  width: 35vw;
}
.back {
  position: absolute;
  top: 5%;
  right: 10%;
}
body{
  color: sienna;
  background-color: burlywood;
  font-family: andale mono;
  text-align: justify;
}
/* unvisited link */
a:link {
  color: peru;
}
/* visited link */
a:visited {
  color: maroon;
}
/* mouse over link */
a:hover {
  color: wheat;
}
/* selected link */
a:active {
  color: white;
}
::selection {
  color: white; 
  background: none;
}