* {
  padding: 0;
  margin: 0;
}

html {
  /* fix mobile viewport menu bar on iOS */
  height: -webkit-fill-available;
}

body {
  height: 100%;
  /* fix mobile viewport menu bar on iOS */
  height: -webkit-fill-available;
  width: 100%;
  text-align: center;
}

#unity-container {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
}

/* Default values, might be overwritten by aspect ratio media queries */
#unity-canvas {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

@media (min-aspect-ratio: 3/1) {
  #unity-canvas {
    width: auto;
    height: 100%;
    aspect-ratio: 3/1;
  }
}

@media (max-aspect-ratio: 1/2) {
  #unity-canvas {
    width: 100%;
    height: auto;
    aspect-ratio: 1/2;
  }
}

#unity-loading-container {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;

  opacity: 1;
  visibility: visible;
  /* transition: 800ms linear; */
}

#unity-loading-container.finished {
  opacity: 0;
  visibility: collapse;
}

#unity-loading-logo-container{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-height: 10%;
  max-width: 50%;
}

h1{
  font-family: 'Montserrat', sans-serif;
  color: #000;
  font-size: 25px;
}

#unity-loading-bar-container {
  height: 90vh;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 1.5%;
}

#unity-loading-bar {
  margin-bottom: 49vh;
  width: 24.4%;
  height: 6.2px;
  background-color: #d9d9d9;
  border: 1px solid #ccc;
  border-radius: 10px;
}

#unity-loading-bar-inner {
  left: 0%;
  top: 0%;
  width: 1%;
  height: 100%;
  background-color: #000000;
  border-radius: 10px;
  transition: 400ms linear;
}

/* Animation */

.logo {
    -webkit-animation: scale-up-center 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate both;
	          animation: scale-up-center 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate both;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-11-8 15:55:52
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
 @-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

