
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;
}

/* fade in fade out code  */
@keyframes fadeIn {
  from{
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from{
    opacity: 1;
  }

  to {
    opacity: 0;
  }

}


img {
    height: 100vh;
}

svg {
  height: 100vh;

}

a {
  /*cursor: url("arrow.png"),auto;*/
}

.b{
  opacity: 0;
}
