* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: #020611;
}

body {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.creative {
  display: block;
  width: fit-content;
  max-width: 100vw;
  height: fit-content;
  max-height: 100dvh;
  position: relative;
  line-height: 0;
}

.creative img {
  display: block;
  width: auto;
  max-width: 100vw;
  height: auto;
  max-height: 100dvh;
  object-fit: contain;
}

.download-hotspot {
  position: absolute;
  z-index: 2;
  left: 15%;
  right: 15%;
  bottom: 9.75%;
  height: 7%;
  border-radius: 999px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.pixel-fallback {
  display: none;
}

@media (hover: hover) {
  .download-hotspot {
    transition: background-color .2s ease, box-shadow .2s ease;
  }

  .download-hotspot:hover {
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 0 28px rgba(255, 192, 0, .35);
  }
}
