html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color-scheme: light dark;
    background: #f5f7fa;
}

#root {
    width: 100%;
    height: 100%;
}

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