.stage {
  height: min(68vh, 720px);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.stage img#source {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform-origin: center center;
  transition: filter 80ms linear, transform 150ms ease;
}

.stage canvas#canvas {
  display: none;
}

@media (max-width: 760px) {
  .stage {
    height: min(58vh, 560px);
    min-height: 280px;
  }
}
