html, body {
  background-color: black;
  margin: 0;
  padding: 0;
}

#background {
  display: block;
  overflow: hidden;
  position: fixed;
  z-index: -1;
  bottom: 0;
}

#content {
  padding: 30px;
  color: white;
  position: absolute;
  right: 30px;
  width: 450px;
  top: 50px;
  border-radius: 25px;
  font-size: 24px;
}

#content h1 {
  font-family: Georgia;
  font-weight: normal;
}

#content p {
}

#content p a,
#content p a:link,
#content p a:visited,
#content p a:hover,
#content p a:active {
  color: #ccb;
  text-decoration: none;
  font-weight: bold;
}

#content p a:hover {
  text-decoration: underline;
  color: #EB9D40;
}