* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: black;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: monospace;
  color: white;
}

#app {
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  position: relative;
  background: black;
  overflow: hidden;
}

#video-wrap {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: black;
  cursor: pointer;
}

/* Hide the real video completely.
   It is only used as a source for the canvas. */
#video {
  display: none !important;
}

#canvas {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background: black;
  image-rendering: pixelated;
}

/* Kill the weird page-wide overlays */
#grain,
#darkness,
#glitch-lines {
  display: none;
}

#hold-button {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);

  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.9);

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;

  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: lowercase;

  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  z-index: 20;
}

#hold-button:active {
  background: rgba(255, 255, 255, 0.12);
}