* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: url('assets/bg.svg') no-repeat center center;
  background-size: cover;
  font-family: Nunito;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 60px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
.page-wrapper {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 980px;
  margin: auto;
  padding: 15px;
}

/* Left Side */
.left-side {
  padding-right: 50px;
  flex: 2;
}
.right-side {
  flex: 2;
  margin-right: -240px;
}
.full-width {
  max-width: 700px;
  padding-top: 50px;
}

.content .store-badge-container {
  padding-top: 55px;
  justify-content: center;
}

.content.privacy h1,
.content.privacy h2 {
  display: block;
  padding-top: 40px;
  padding-bottom: 10px;
  font-weight: 600;
}
.content.privacy h1 {
  font-size: 36px;
}

.content.privacy h2 {
  font-size: 28px;
}

.content.privacy p {
  font-size: 26px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.content.privacy a {
  text-decoration: underline;
}

/* Logo */
.logo {
  display: block;
  margin-bottom: 0px;
  margin-left: -30px;
  margin-top: -20px;
}
.logo img {
  display: block;
  width: 160px;
  height: auto;
  margin: auto;
}

/* Lead Text */
.lead-text-container {
  margin-bottom: 50px;
}
.lead-text-container p.text {
  font-size: 40px;
  font-weight: bold;
  color: #000;
}

/* Store Badges */
.store-badge-container {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
.store-badge-container .store-badge {
  padding: 10px;
}
.store-badge-container .store-badge img {
  display: block;
  width: auto;
  height: 48px;
}

/* Bottom */
.bottom-container {
  display: flex;
  flex: 1;
  width: 100%;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding: 20px;
  position: fixed;
  bottom: 0;
  background: #fff;
}

.madein {
  font-size: 14px;
  text-align: center;
  color: #000;
}

@media screen and (max-width: 570px) {
  .container {
    flex-direction: column;
  }

  /* Left Side */
  .left-side,
  .right-side {
    padding: 0;
    margin: 0;
    flex: 1;
  }

  /* Logo */
  .logo {
    text-align: center;
    margin: 0;
    margin-top: 20px;
  }
  .logo img {
    width: 120px;
  }

  /* Lead Text */
  .lead-text-container {
    margin-bottom: 20px;
    text-align: center;
  }
  .lead-text-container p.text {
    font-size: 20px;
  }

  /* Store Badges */
  .store-badge-container {
    display: flex;
    margin: 0;
    margin-bottom: 20px;
  }
  .store-badge-container .store-badge {
    flex: 1;
  }
  .store-badge-container .store-badge img {
    margin: auto;
  }
}
