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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

body {
  font: 15px/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.clip {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #000;
  object-fit: contain;
  pointer-events: none;
  opacity: 0;
  transform: translate(-100vw, -100vh);
  will-change: transform;
}

.clip.is-on {
  opacity: 1;
}

#start,
#status {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: #000;
  color: #f2f2f2;
  font: inherit;
  letter-spacing: 0.08em;
}

#start {
  cursor: pointer;
}

#status[hidden] {
  display: none;
}
