* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.app-view {
  position: relative;
  width: 100%;
  max-width: 720px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
  background: #b83acf;
  overflow-x: hidden;
}

.app-logo {
  display: block;
  width: min(12.7778vw, 92px);
  height: min(12.7778vw, 92px);
  border-radius: min(2.7778vw, 20px);
  object-fit: cover;
}

.app-hero-button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.app-hero {
  display: block;
  width: 100%;
  height: auto;
}

.app-download {
  position: fixed;
  right: max(0px, calc((100vw - 720px) / 2));
  bottom: env(safe-area-inset-bottom);
  left: max(0px, calc((100vw - 720px) / 2));
  z-index: 6;
  display: block;
  width: min(100vw, 720px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    filter 0.16s ease,
    opacity 0.16s ease;
}

.app-download__brand {
  position: absolute;
  top: 53.8%;
  left: 5.4%;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: min(2.5vw, 18px);
  pointer-events: none;
}

.app-download__name {
  color: #fee945;
  font-size: min(3.3333vw, 24px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 3px rgba(69, 0, 88, 0.55);
  white-space: nowrap;
}

.app-download:active {
  transform: translateY(2px);
  filter: brightness(0.98);
}

.app-download.is-busy {
  pointer-events: none;
  opacity: 0.78;
}

.app-download__art {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 420px) {
  .app-view {
    padding-bottom: calc(94px + env(safe-area-inset-bottom));
  }
}
