html, body {
  height: 100%;
  margin: 0px;
  position: relative;
}

#drawing {
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  min-height:100%;
}

.background {
  background-image: url('/background.jpg');
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
  font-family: "Courier New", Courier, monospace;
  font-size: 25px;
}

.logo {
  position: absolute;
  top: 16px;
  left: 16px;
}

.info {
  position: absolute;
  bottom: 0;
  left: 16px;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.content > p {
  text-shadow: 2px 2px black;
}

hr {
  margin: auto;
  width: 40%;
}
