 canvas {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    box-shadow: rgb(0 0 0 / 10%) 0 0 16px 16px
} 
 /* #unity-canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-interpolation-mode: nearest-neighbor;
    -webkit-transform: scale3d(1, 1, 1);
    z-index: 1;
} */
  /* body {
        text-align: center;
        padding: 0;
        border: 0;
        margin: 0;
        background: #231F20;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        font-family: Arial, sans-serif;
      } */
      
      #unity-container {
        position: absolute;
        width: 100%;
        /* max-width: 600px;  */
        height: 100vh;
        /* display: flex; */
        justify-content: center;
        align-items: center;
      }
      
      /* #unity-canvas {
        background: #231F20;
        width: 100%;
        height: auto;
        max-height: 100vh;
        aspect-ratio: 9/16;
        display: block;
      } */
      
      /* For mobile devices */
      /* @media screen and (max-width: 768px) {
        #unity-container {
          width: 100vw;
          height: 100vh;
          max-width: none;
        } */
        
        /* #unity-canvas {
          width: 100vw;
          height: 100vh;
          max-height: none;
          aspect-ratio: unset;
        } */
      /* } */
      
      /* Force portrait on landscape mobile */
      @media screen and (orientation: landscape) and (max-width: 768px) {
        /* #unity-container {
          transform: rotate(90deg);
          transform-origin: center center;
          width: 100vh;
          height: 100vw;
          position: fixed;
          top: 50%;
          left: 50%;
          margin-top: -50vw;
          margin-left: -50vh;
        } */
        
        /* #unity-canvas {
          width: 100%;
          height: 100%;
        } */
      }