html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #070015;
    color: rgba(255, 255, 255, 0.87);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    touch-action: none;
    overscroll-behavior: none;
}

#app {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background-color: #070015;
}

#game-container {
    width: 100%;
    height: 100%;
}

#game-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}