@import url(https://fonts.googleapis.com/css?family=Jersey+10&display=swap);
html {
  font-family: "Jersey 10";
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

#loadPanel{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  transition: all 1s ease-in-out;
}

canvas {
  width: 100%;
  height: 100%;
}

h1 {
  position: fixed;
  line-height: 0.8rem;
  color: #fff;
  font-size: 5rem;
  letter-spacing: .2rem;
  text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #F0F, 0 0 30px #F0F, 0 0 40px #F0F, 0 0 55px #F0F, 0 0 75px #F0F;
  text-align:center;
    top: calc(45vh - 2.5rem);
    left: 46vw;
}

h3 {
  position: fixed;
  color: #FFF;
  font-size: 1.8rem;
  margin-top:6rem;
  letter-spacing: .2rem;
text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #F0F, 0 0 30px #F0F, 0 0 40px #F0F, 0 0 55px #F0F, 0 0 75px #F0F;
}

span{
  font-size: 1.8rem;
}

#bottomLoader{
  position: fixed;
  left: 0;
  bottom: 2vh;
  width: 100vw;
}

#PercentLoad{
  position: absolute;
  left: 5vw;
  bottom: 2vh;
  color: white;
  text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #F0F, 0 0 30px #F0F, 0 0 40px #F0F, 0 0 55px #F0F, 0 0 75px #F0F;
}

.barBtm{
  position: absolute;
  left: 0;
  bottom: 0;
  height: 10px;
  background-color: white;
  box-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #F0F, 0 0 30px #F0F, 0 0 40px #F0F, 0 0 55px #F0F, 0 0 75px #F0F;;
}

.expanded {
  transform: scale(60) translateX(30px) translateY(-2px);
  transition: all 2.5s ease-in-out;
}

.expanded h1{
  opacity: 0;
  transition: all .5s ease-in-out;
}

.hidePreload{
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.invisible{
  display: none;
}

.bg-black{
  background-color: black;
}