html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    background: #08090c;
}

body {
    min-width: 100%;
    min-height: 100vh;
    overflow: hidden;

    color: rgba(255, 255, 255, 0.87);
    background: #08090c;

    overscroll-behavior: none;
    user-select: none;
    -webkit-user-select: none;
}

#app {
    width: 100vw;
    height: 100vh;

    margin: 0;
    padding: 0;

    overflow: hidden;

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

    background: #08090c;
}

#game-container {
    position: relative;

    width: 100vw;
    height: 100vh;

    margin: 0;
    padding: 0;

    overflow: hidden;

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

    background: #08090c;

    touch-action: none;
}

#game-container canvas {
    display: block;

    margin: 0 !important;

    max-width: 100%;
    max-height: 100%;

    outline: none;

    image-rendering: auto;
}
