/* Важно для мобильных устройств */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #2c1a10;
    touch-action: none; /* Отключаем стандартные жесты */
}

body {
    margin: 0;
    overflow: hidden;
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
}

#game-container {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
canvas {
    display: block;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    /*filter: brightness(.9);*/
}

button, div {
    -webkit-tap-highlight-color: transparent;
}
