:root {
  --gold: #ecce8f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100dvh;
  background: var(--gold);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

.stage {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}

.media {
  position: relative;
  display: block;
  width: min(100%, 32rem);
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.media:focus-visible {
  outline: none;
}

.media__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.media__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

body.dark {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
}

.feature-video {
  display: block;
  width: 100%;
}

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

  .media:hover,
  .media:focus-visible {
    transform: none;
  }
}
