.entrance-animation {
  display: block;
  width: min(960px, 80vw);
  max-height: 72vh;
  object-fit: contain;
  pointer-events: none;
}

.enter-control {
  top: calc(50% - clamp(125px, 14vw, 205px));
}

@media (max-width: 760px) {
  .entrance-animation {
    width: 94vw;
    max-height: 68vh;
  }

  .enter-control {
    top: calc(50% - 31vw);
  }
}

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