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

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  background: #000;
  -webkit-tap-highlight-color: transparent;
}

.page {
  width: 100%;
  max-width: 480px;
  height: 100%;
  height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.hero-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  height: 100dvh;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hero-link:active {
  opacity: 0.96;
}

.hero-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

@media (min-width: 481px) {
  body {
    background: #1a1a1a;
  }

  .page {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  }
}
