* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-image:  url(background.jpg);
/*  background-color: #ccc;*/
  background-size: cover;
  height: 100vh;
  color: #fff;
}

canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 0 30px #00b4ff;
}

div#information {
  padding-top: 40px;
  padding-left: 50px;
}

div#information p {
  font-family: oswald;
  font-size: 12px;
}

div#information h1 {
  font-family: oswald;
  font-size: 30px;
  margin-bottom: 30px;
}

div#information h2 {
  font-family: oswald;
  font-size: 16px;
}

address {
  position: absolute;
  bottom: 40px;
  text-align: right;
  padding-right: 40px;
  width: 100%;
}

address a {
  font-family: oswald;
  font-style: normal;
  color: #fff;
  font-size: 12px;
}