/* Минимальный стиль сплеша в стиле flutter_native_splash */
html, body {
  height: 100%;
}
body {
  margin: 0;
}
#splash {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
@media (prefers-color-scheme: dark) {
  #splash { background: #121212; }
}
#splash img {
  width: 120px;
  height: 120px;
}
