/* Body and container */
body {
  margin: 0;
  background-color: #0d0d0d;
  height: 100vh;
  overflow: hidden;
  user-select: none;
}

#mainImg {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: fill;
  filter: blur(14px);
  z-index: 1;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
}

#mediaVid {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 2;
}
