body {
  height: 100%;
  background-color: #f5f5f5;
  background-image: -webkit-radial-gradient(circle farthest-corner at 50% 50%, #fff, #f5f5f5);
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #fff, #f5f5f5);
  font-family: Lato, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 20px;
}

.wrapper {
  position: absolute;
  left: 0px;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  text-align: center;
}

.logo {
  width: 100%;
}

.container {
  display: block;
  width: 100%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}

.heading {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 40px;
  line-height: 110%;
  font-weight: 300;
}

@media (max-width: 767px) {
  .heading {
    font-size: 6vw;
  }
}

@media (max-width: 479px) {
  .heading {
    font-size: 7vw;
  }
}