*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: rgba(235, 243, 249, 1);
  background: -moz-linear-gradient(
    180deg,
    rgba(235, 243, 249, 1) 0%,
    rgba(235, 243, 249, 1) calc(100% - 225px),
    rgba(255, 255, 255, 1) calc(100% - 225px),
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(235, 243, 249, 1) 0%,
    rgba(235, 243, 249, 1) calc(100% - 225px),
    rgba(255, 255, 255, 1) calc(100% - 225px),
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(235, 243, 249, 1) 0%,
    rgba(235, 243, 249, 1) calc(100% - 225px),
    rgba(255, 255, 255, 1) calc(100% - 225px),
    rgba(255, 255, 255, 1) 100%
  );
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans;
  font-size: 16px;
}

h1 {
  color: #0d9953;
  font-size: 24px;
  font-weight: 500;
  margin-top: -35px;
  margin-bottom: -15px;
}

a {
  text-decoration: none;
  color: #328bd9;
}

.logo-wrapper {
  background-color: #ffffff;
  padding: 15px 0;
  text-align: center;
  width: 100%;
}

.logo {
  height: 34px;
}

.container {
  margin: 0 auto;
  position: relative;
  background: url(img/bg.png) no-repeat center 30px;
  background-size: 100% auto;
  height: calc(100% - 71px);
  width: 830px;
}

.content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  text-align: center;
  width: 100%;
}

.buttons > * {
  display: inline-block;
}

.buttons > a:last-child {
  margin-left: 15px;
}

.store-img {
  width: 150px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    background-size: 95% auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  body {
    background: rgba(235, 243, 249, 1);
    background: -moz-linear-gradient(
      180deg,
      rgba(235, 243, 249, 1) 0%,
      rgba(235, 243, 249, 1) calc(100% - 225px),
      rgba(255, 255, 255, 1) calc(100% - 225px),
      rgba(255, 255, 255, 1) 100%
    );
    background: -webkit-linear-gradient(
      180deg,
      rgba(235, 243, 249, 1) 0%,
      rgba(235, 243, 249, 1) calc(100% - 225px),
      rgba(255, 255, 255, 1) calc(100% - 225px),
      rgba(255, 255, 255, 1) 100%
    );
    background: linear-gradient(
      180deg,
      rgba(235, 243, 249, 1) 0%,
      rgba(235, 243, 249, 1) calc(100% - 225px),
      rgba(255, 255, 255, 1) calc(100% - 225px),
      rgba(255, 255, 255, 1) 100%
    );
  }

  h1 {
    font-size: 16px;
  }

  .container {
    width: 100%;
    background: url(img/bg-mobile.png) no-repeat;
    background-position: center 6vh;
    background-size: 80% auto;
  }

  .content {
    bottom: 0;
  }

  .buttons > a:last-child {
    margin-left: 5px;
  }

  .store-img {
    width: 130px;
  }
}
