html,
body {
    width: 100%;
    height: 100%;
    overscroll-behavior: none;
}

body {
    min-height: 100dvh;
    margin: 0;
    overflow: hidden;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    background: #6aa8da;
}

.pixel-page {
    position: fixed;
    inset: 0;
}

.scene-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

#pixel-scene {
    display: block;
    width: 100vw;
    height: 100dvh;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    background: #87beef;
}
