/* Flashlight Overlay */
:root {
  cursor: none;
  --cursorX: 50vw;
  --cursorY: 50vh;
}
:root:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  pointer-events: none;
  background: radial-gradient(
    circle 10vmax at var(--cursorX) var(--cursorY),
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.5) 80%,
    rgba(0,0,0,.95) 100%
  )
}

body{
  margin: 0;
  padding: 0;
}

body div{
  width: 100%;
  height: 100vh;
  border: none;
  display: flex;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  font-size: 120px;
  color: #050505;
}
