html {
    height: 100%;
    width: 100%;
    background-color: #1d292c;
}
body {
    margin: 0;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1d292c;
    font-family: Helvetica, arial, sans-serif;
    position: relative;
    width: 100%;

    -webkit-tap-highlight-color: transparent;
}

/* Floating header - absolute position, high z-index, appears above canvas */
#playcanvas-header {
    position: absolute;
    top: 0;
    left: 44%;
    z-index: 10000;
    box-sizing: border-box;
    padding: 12px 16px;
}
#playcanvas-header h1 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: visible;
}

#application-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#application-canvas.fill-mode-NONE {
    margin: auto;
}
#application-canvas.fill-mode-KEEP_ASPECT {
    width: 100%;
    height: auto;
    margin: 0;
}
#application-canvas.fill-mode-FILL_WINDOW {
    width: 100%;
    height: 100%;
    margin: 0;
}

canvas:focus {
    outline: none;
}
