/* universal styling */

.app {
  width: 100vw;
  height: 100vh;
  background-color: black;
  display: block;
}

body, html {
  margin: 0;
  overflow: hidden;
  background-color: black;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  transition: 900ms;
}

html,
body,
body * {
  cursor: url(../images/cursor.png), auto !important;
}

.wii-cursor {
  display: none;
}

@media (any-pointer: fine) {
  html.wii-cursor-active,
  html.wii-cursor-active body,
  html.wii-cursor-active body * {
    cursor: none !important;
  }

  .wii-cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 65px;
    height: 91px;
    background: url(../images/cursor.png) no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0);
    will-change: transform;
    z-index: 2147483647;
  }

  .wii-cursor.is-visible {
    opacity: 1;
  }
}

.black {
  background-color: black;
  width: 100vw;
  height: 100vh;
  z-index: 999999999;
  top: 100vh;
  opacity: 0;
  transition: opacity 300ms;
  position: fixed;
}

.black.animate {
  opacity: 1;
}
