* {
    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;
    background-color: #A0B3CC;
  }

  #unity-container {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #unity-canvas {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #A0B3CC;
  }



  #unity-loading-container {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;

    opacity: 1;
    visibility: visible;
    transition: 100ms linear;
  }

  #unity-loading-container.finished {
    opacity: 0;
    visibility: collapse;
  }

  #unity-loading-container .logo {
    width: 15%;
    height: 15%;
  }

  #unity-loading-bar {
    position: relative;
    width: 40%;
    height: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
  }

  #unity-loading-bar-inner {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 1%;
    height: 100%;
    background-color: #ccc;
    border-radius: 10px;
    transition: 400ms linear;
  }
