:root { color-scheme: dark; }
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: #000; }
body { overflow-x: hidden; }

main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(8px, 2vw, 28px);
  background:
    radial-gradient(circle at 62% 48%, rgba(88, 0, 86, .12), transparent 40%),
    #000;
}

.artwork {
  position: relative;
  width: min(calc(100svh * 1.5 - 24px), calc(100vw - 24px), 1536px);
  aspect-ratio: 3 / 2;
}

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

.hotspot {
  position: absolute;
  display: block;
  border-radius: 999px;
  outline: 0 solid transparent;
  transition: background-color .16s ease, box-shadow .16s ease;
}

.hotspot:hover {
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 0 26px rgba(255, 25, 183, .25);
}

.hotspot:focus-visible {
  outline: 3px solid #72ffe9;
  outline-offset: 5px;
}

.ebay {
  left: 56.1%;
  top: 45.5%;
  width: 39.6%;
  height: 15.5%;
}

.email {
  left: 65.5%;
  top: 62.2%;
  width: 30.3%;
  height: 12.1%;
  border-radius: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-aspect-ratio: 4 / 5) {
  main { align-content: center; padding: 4px; }
  .artwork { width: calc(100vw - 8px); }
}

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