/* Base style
   ========================================================================== */

/* Fonts */
@font-face {
  font-family: "muroregular";
  src: url("fonts/muro-webfont.woff2") format("woff2"),
    url("fonts/muro-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Termina-Demi";
  src: url("fonts/Termina-Demi.woff2") format("woff2"),
    url("fonts/Termina-Demi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #0a7dff;
}

/*-- Percent Loader -- */
#mainLoader {
  position: absolute;
  z-index: 5;
  display: none;
  font-size: 25px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  width: 100%;
  font-family: "termina", "Termina-Demi";
}

/*-- Content Wrapper -- */
#mainHolder {
  position: absolute;
  width: 100%;
  height: 100%;
}

/*-- Browser Not Support -- */
#notSupportHolder {
  width: 90%;
  margin: 5% auto;
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-family: "termina", "Termina-Demi";
  display: none;
}

/*-- Rotate Animation -- */
@-moz-keyframes spin {
  50% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-webkit-keyframes spin {
  50% {
    -webkit-transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes spin {
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

/*-- Canvas Wrapper -- */
#canvasHolder {
  display: none;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: auto;
  position: relative;
}
canvas {
  position: fixed;
}
