@import url("https://fonts.googleapis.com/css?family=Ubuntu");
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: 'Ubuntu', sans-serif;
}



body {
  background-color: #fefefe;
  background: url() no-repeat center center fixed;
  background-size: cover;
}


.sg {display: none !important;}

#canvas {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

content {
  padding: 5vw;
  -webkit-box-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin: 0 auto;
}
content > * {
  padding: 9vh 9vw;
  margin-bottom: 10vh;
  color: #efefef;
}
@media only screen and (max-width: 500px) {
  content > * {
    margin-bottom: 10vh;
  }
}
content h1 {
  grid-area: header;
  width: auto;
  display: inline-block;
  text-align: center;
  font-size: 5vw;
  align-self: center;
}
content p {
  max-width: 55vw;
  font-size: 2vw;
}
@media only screen and (max-width: 500px) {
  content p {
    font-size: 4vw;
  }
}
content p:nth-child(even) {
  align-self: flex-end;
}
