html,
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;

    max-height: var(--tg-viewport-height, 100vh);
}

body {
    background-image: url('../content/tile.webp');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

#unity-canvas {
    background: transparent;
    image-rendering: crisp-edges;
    display: block;

    height: 100%;
}

#game-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
