* { box-sizing: border-box; }

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  position: fixed;
  inset: 0;
}

.screen {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.art {
  position: relative;
  width: min(100vw, calc(100svh * 843 / 1071));
  aspect-ratio: 843 / 1071;
  max-width: 100vw;
  max-height: 100svh;
  background: #000;
}

.art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
}

.email {
  left: 17%;
  top: 78.4%;
  width: 66%;
  height: 7.8%;
}

.facebook {
  left: 17%;
  top: 87%;
  width: 66%;
  height: 7.8%;
}

.hotspot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
