* {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    background: transparent;
}


#game-container > canvas {
    margin: auto;
    position: relative;
    display: block;
    touch-action: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-interpolation-mode: nearest-neighbor;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    width: calc(100% - 6px) !important;
    height:auto !important;
    border: 1px solid transparent;
}

#portrait-screen {
    width: 100%;
    height: 100%;
    background: url('img/bg/portrait-screen.jpg') center;
    background-size: cover;
    display: none !important;
}

#game-container > canvas:focus {
    outline: none;
    border: 1px solid white;
}