* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #fff;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
}

.landing-wrap {
  position: relative;
  width: 100%;
}

.landing-wrap--mobile {
  display: none;
}

.landing-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  text-decoration: none;
}

.frame {
  display: block;
  height: auto;
  background: #fff;
}

.frame--desktop {
  width: 100vw;
  max-width: none;
}

.frame--mobile {
  width: 100vw;
  max-width: none;
}

.legal-link {
  position: absolute;
  z-index: 2;
  display: block;
}

.legal-link--desktop-privacy {
  bottom: 0.62%;
  right: 28.7%;
  width: 3.9%;
  height: 0.65%;
}

.legal-link--desktop-terms {
  bottom: 0.62%;
  right: 24.45%;
  width: 3.2%;
  height: 0.65%;
}

.legal-link--mobile-privacy {
  bottom: 2.98%;
  left: 5.8%;
  width: 15.5%;
  height: 0.65%;
}

.legal-link--mobile-terms {
  bottom: 2.98%;
  left: 28%;
  width: 11.8%;
  height: 0.65%;
}

@media (max-width: 760px) {
  .landing-wrap--desktop {
    display: none;
  }

  .landing-wrap--mobile {
    display: block;
  }
}
