/* Flashlight Overlay */

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
}

#fader {
  width: 100%;
  height: 100%;
  color: black;
  pointer-events: none;
  animation: fadeOut 6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

@keyframes fadeOut {
  from{
    opacity: 1;
  }

  to {
    opacity: 0;
  }

}

img {
    height: 100vh;
}

svg {
  height: 100vh;
}

.b{
  opacity: 0;
}

a {
  cursor: url("arrow.png"),auto;
}

: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,0.5) 80%,
    rgba(0,0,0,1) 100%
  )
}
