body {
  margin: 0;
  background: black;
}

* {
  box-sizing: border-box;
  line-height: 100%;
  margin: 0;
}
p {
  font-size: 1rem;
  margin: 0;
}

main {
  width: 100%;
  height: 100vh;
  position: relative;
}

#click,
#video,
#display {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

#click {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: black;
  z-index: 100;
  pointer-events: all;
}

#video-source {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  filter: blur(10px) brightness(50%);
}

#display > canvas {
  width: 100% !important;
  height: 100% !important;
}
