html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* Match the Compose theme background so there's no white flash
       while the wasm bundle downloads. Values mirror
       LightColors.background / DarkColors.background in Color.kt;
       keep them in sync if the palette changes. */
    color-scheme: light dark;
    background-color: #FFFBFF;
}

@media (prefers-color-scheme: dark) {
    html, body {
        background-color: #051124;
    }
}