
/* 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;
} */
html, body {
    overflow: hidden;
    width   : 100%;
    height  : 100%;
    margin  : 0;
    padding : 0;

    -webkit-touch-callout: none !important;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none !important;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none !important;                  /* prevent copy paste, to allow, change 'none' to 'text' */
}
#renderCanvas {
    width   : 100%;
    height  : 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    border: none;
}