* {
    box-sizing: border-box;
    outline:none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently supported by any browser but < IE9 */
}

body {
    margin:0;
    padding:0;

    background-color:black;
    font-size:2vh;
}

.hidden {
    display:none !important;
}

#game {
    display:block;
    position:absolute;
    width:100vh;
    height:100vh;
    top:0;
    margin-left:50%;
    margin-right:50%;
    transform: translate(-50%, 0);
}

.screen {
    display:block;
    position:absolute;
    width:100%;
    height:100%;
    overflow: hidden;
}

#loader {
    display:block;
    position:absolute;
    top:60%;
    left:50%;    
    transform: translate(-50%, 0);
    color:WHITE;
    font-family: sans-serif;
    font-size:3vw;
    font-weight:800;
}

/* */

div.bigtext {
    display:block;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index:10;

    text-align:center;
    font-family: "Righteous";
    font-size:10em;
    color:white;
    text-shadow:0 0 15px #000000;
    white-space:nowrap;

    opacity:1;
    transition: 1s cubic-bezier(0.000, 1.000, 1.000, 0.000);
}

div.bigtext.scaleout {
    font-size:0em;
    opacity:0;
}

/*
loader animation 
from: projects.lukshaas.me/css-loaders/
*/

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #ffffff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}