body,canvas{
    margin:0;
    padding: 0;
    overflow: hidden;        
 }

body{
    background-image: url(Build/bgs.jpg);
    background-repeat: repeat-x;
    background-size: auto 100%;
}

#unityContainer{
 margin: auto !important;
 background: none !important;
}

.splash{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(Build/bgs.jpg);
  background-repeat: repeat-x;
  background-size: auto 100%;
}

.splash > div{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.logo{
  width: 80%;
}

.wheel{
  width: 25%;
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}


 .progress{
    background: #eee;
    height: 20px;
    width: 40%;
    margin-top: 1rem;
    border-radius: 6px;
    overflow: hidden;
 }

 .progress > div{
    height: 100%;
    width: 0;
    background: turquoise;
 }


