body, html, #app {
  margin: 0;
  width: 100%;
  height: 100%;
}

#app {
  overflow: hidden;
  touch-action: pan-up;
  background: black;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  /* text-shadow: 0 0 5px #ffffff, 0 0 20px #000, 0 0 30px #000; */  
}
#hero {
  height: 100%;
  cursor: url("paintbrush.png") 10 10, auto;
}

img {
  overflow: hidden;
}

#app canvas {
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
}

#main-logo {
  position: fixed;
  width: 100%;
  max-width: 350px;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  touch-action: none;
  pointer-events: none;
  display: none;
}

.d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

#customPointer{
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
  touch-action: none;
}

@media screen and (max-width: 734px) {
  #main-logo {
    max-width: 250px;
  }
  #loader {
    max-width: 250px;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  display: block;
  animation-name: fade-in;
  animation-duration: 2s;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fade-out {
  animation-name: fade-out;
  animation-duration: 2s;
}

@keyframes dipper {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}

.slide-in {
  animation: dipper 5s linear forwards;
}

@keyframes big-dipper {
  0% {
    transform: scale(2);
    opacity: 0.1;
  }
  50% {
    transform: scale(2);
    opacity: 1;
  }
  60% {
    transform: scale(2);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0.1;
  }
}

.big-slide-in {
  animation: big-dipper 5s linear forwards;
}

#loader {
  position: relative;
  top: calc(100vh - 210px);
  width: 40%;
  max-width: 700px;
  margin: auto;
  cursor: none !important;
  overflow: hidden;
  touch-action: none;
  pointer-events: none;
}

.big {
  transform: scale(2);
}