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

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

body {
  -webkit-tap-highlight-color: transparent;
}

.landing-page {
  --max-width: 768px;
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  cursor: pointer;
  -webkit-touch-callout: none;
}

.download-surface {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100vh;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.background-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #ffffff;
}

.media-content {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.download-surface:focus-visible {
  outline: 3px solid #d7a451;
  outline-offset: -3px;
}

.download-surface:active .media-content {
  opacity: 0.94;
}

@media (min-width: 769px) {
  .landing-page {
    box-shadow: 0 0 0 1px rgb(0 0 0 / 5%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-content {
    transition: none;
  }
}
