body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: 0;
  font-family: 'Roboto';
  font-weight: 400;
}
.background {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: #ffffff;
  /*background: -moz-linear-gradient(top, #a741ff 0%, #5480fd 100%);
  background: -webkit-linear-gradient(top, #a741ff 0%, #5480fd 100%);
  background: linear-gradient(to bottom, #a741ff 0%, #5480fd 100%);*/
  background: -moz-linear-gradient(top, #F16F53 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #F16F53 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #F16F53 0%, #FFCFA4 100%);
}
.wrapper {
  width: 80%;
  height: 100%;
  min-height: 800px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -webkit-box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.15);
}
.wrapper .header {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #81a2ff;
  background: -moz-linear-gradient(top, #81a2ff 0%, #c1e1ff 100%);
  background: -webkit-linear-gradient(top, #81a2ff 0%, #c1e1ff 100%);
  background: linear-gradient(to bottom, #FFCFA4 0%, #ffffff 100%);
  overflow: hidden;
}
.wrapper .header .logo {
  width: 160px;
  height: auto;
  position: absolute;
  top: 20px;
  left: 20px;
  align: center;
}
.wrapper .header .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 33px;
  position: absolute;
  top: 70px;
  right: 70px;
  text-align: right;
  width: auto;
}
.wrapper .header .menu li {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
}
.wrapper .header .content {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -85%);
}
.wrapper .header .content h2 {
  color: #fff;
  margin: 0;
  font-size: 2.3em;
  line-height: 1.2em;
  width: 100%;
  text-align: center;
}
.wrapper .header .content .buttons {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}
.wrapper .header .content .button {
  display: inline-block;
  width: 150px;
  height: 50px;
  padding-left: 20px;
  background: #000;
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  margin: 40px 5px 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 12px 20px -10px rgba(0,0,0,0.65);
  -moz-box-shadow: 0px 12px 20px -10px rgba(0,0,0,0.65);
  box-shadow: 0px 12px 20px -10px rgba(0,0,0,0.65);
  transition: box-shadow 0.5s;
}
.wrapper .header .content .button:hover {
  -webkit-box-shadow: 0px 0px 20px -10px rgba(0,0,0,0.65);
  -moz-box-shadow: 0px 0px 20px -10px rgba(0,0,0,0.65);
  box-shadow: 0px 0px 20px -10px rgba(0,0,0,0.65);
  transition: box-shadow 0.5s;
}
.wrapper .header .content .button.apple {
  background-image: url("https://vignette2.wikia.nocookie.net/respawnables/images/2/2f/Apple-logo-white-md.png/revision/latest?cb=20160224124036");
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: 20px center;
}
.wrapper .header .content .button.google {
  background-image: url("https://vignette3.wikia.nocookie.net/starwars/images/e/ee/Google_Play_logo.png/revision/latest?cb=20141119230612");
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: 20px center;
}
.wrapper .header .waves {
  width: calc(100% + 10px);
  height: auto;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  z-index: 0;
}
.wrapper .header .curve {
  display: none;
  width: calc(100% + 10px);
  height: auto;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  z-index: 1;
}