:root {
  color-scheme: light;
  background: #ccebd4;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #ccebd4;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.portrait-screen {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #ccebd4;
}

.portrait-screen__artwork {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 33.9%;
  left: 15%;
  display: grid;
  place-items: center;
  width: 70%;
  min-height: 4.1%;
  margin: 0;
  color: #063d2d;
  background: linear-gradient(90deg, rgba(211,235,207,.98), rgba(173,219,182,.98));
  font: 800 clamp(11px, 1.62vh, 31px)/1.1 Arial, Helvetica, sans-serif;
  letter-spacing: .01em;
  text-align: center;
}

.start-hotspot {
  position: absolute;
  z-index: 2;
  left: 11.1%;
  top: 83.4%;
  width: 77.8%;
  height: 10.2%;
  padding: 0;
  border: 0;
  border-radius: 1.2rem;
  background: transparent;
  cursor: pointer;
}

.start-hotspot:focus-visible {
  outline: 5px solid rgba(255, 255, 255, .94);
  outline-offset: -9px;
}

.start-hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0);
  transition: background-color 120ms ease;
}

.start-hotspot:active::after,
.start-hotspot.is-pressed::after {
  background: rgba(255, 255, 255, .13);
}

.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 (orientation: landscape) {
  .portrait-screen {
    left: 50%;
    right: auto;
    width: min(100vw, 56.25vh);
    transform: translateX(-50%);
  }

  body {
    background: #071d16;
  }
}

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