@import url("https://fonts.googleapis.com/css?family=Comfortaa:300,400,700");
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
  background: #ececec;
}

#bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.main {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.main .title {
  font-family: "Comfortaa", cursive;
  font-size: 5em;
  margin: 0;
  font-weight: 700;
}
.main .subtitile {
  font-size: 1.2em;
  margin: 0;
}
.main p {
  color: #888;
  margin-top: 10px;
  font-size: 0.9em;
}
.main p a {
  color: #555;
  text-decoration: underline;
}