* {
  box-sizing: border-box;
}

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

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f5f5f5;
}

.stage {
  position: relative;
  width: min(100vw, 1600px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.rendering {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 5;
  border-radius: 999px;
  text-decoration: none;
  outline-offset: 4px;
}

.hotspot:focus-visible {
  outline: 3px solid #c90022;
  background: rgba(201, 0, 34, 0.08);
}

/* Percent positions are based on the approved 1600 x 1000 rendering. */
.flyer-link {
  left: 9.45%;
  top: 75.7%;
  width: 7.75%;
  height: 2.8%;
  border-radius: 4px;
}

.apply-link {
  left: 28.3%;
  top: 88.1%;
  width: 13.9%;
  height: 5.7%;
}

.facebook-link {
  left: 50.6%;
  top: 88.3%;
  width: 10.1%;
  height: 5.3%;
}

.instagram-link {
  left: 62.2%;
  top: 88.3%;
  width: 10.4%;
  height: 5.3%;
}

@media (max-aspect-ratio: 16/10) {
  .stage {
    width: 100vw;
    max-height: 100vh;
  }
}
