html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: white;
  overflow: hidden;
}

#load-bar {
  position:absolute;
  left: 50%;
  bottom: 15%;
  transform: translate(-50%, -50%);

  width:250px;
  height:30px;
  background: lightgray;
  box-shadow: 0px 0px 15px 5px black;
}

#load-bar .fill{
  width: 0%;
  height: 100%;
  background: #2596BE;
}

#load-bar .unity-load-prompt{
  font-size: 20px;
  font-family: futuraHeavy;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;

  text-align:center;
  /* display: flex;  */
  margin-top: 10px;
}


#unity-canvas {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: white;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e0e0e0;
  padding: 0.3em;
  border-radius: 10%;
  opacity: 0.5;
}

.fullscreen,
.exit-fullscreen {
  position: fixed;
  top: 2vh;
  right: 2vh;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
  bottom:60px;
  position:absolute;

  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 
}



@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.unmute,
.mute {
  display: none;
  position: fixed;
  bottom: 2vh;
  right: 2vh;
}

.controls-container svg path {
  fill: none;
}

.btn:hover {
  background: #c0c0c0;
  cursor: pointer;
}

.controls-container svg {
  stroke: #000;
  stroke-width: 2;
  fill: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.start-show {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display:flex;
    justify-content: center;
    background: #FFFFFF;
}

@font-face { 
   font-family: futuraHeavy;
    src: url(futura_heavy.otf);   
}

.start-show {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
}

.logo-img {
    width: 8vw;
    margin-bottom:5px;
}

.logo{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

.start-show div {
    font-size: 2rem;
    font-family: futuraHeavy;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2596BE;
}

.splash {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    bottom: 15%;
    display:flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

.splash h3 {
    position: absolute;
    bottom: 0;
    color: #000000;
    font-size: 2rem;
    font-family: futuraHeavy;
    letter-spacing: 3px;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
}
.ios-prompt {
  position: fixed;
  top: 20vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 300px;
}
.android-prompt {
  position: fixed;
  top: 20vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 300px;
}

#ios-download{
  background-color: rgba(51, 51, 51, 0.1);
  border-radius: 4px;
  border-width: 0;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  text-align: center;
  transition: all 200ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-right:5px;
}

#ios-continue{
  background-color: rgba(51, 51, 51, 0.1);
  border-radius: 4px;
  border-width: 0;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  margin: 0;
  padding: 10px 15px;
  text-align: center;
  transition: all 200ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

@media (max-width: 600px) {
    .start-show div {
        font-size: 1rem;
    }
}
