html,
body {
  height: 100%;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  margin: 0;
  padding: 0;
  background: #05221b;
}

body > flutter-view,
flt-glass-pane,
flt-scene-host {
  display: block;
  height: 100%;
  width: 100%;
}

#app-splash {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: linear-gradient(180deg, #0a5c4e 0%, #05221b 100%);
  transition: opacity 0.35s ease;
}

#app-splash.fade-out {
  opacity: 0;
  pointer-events: none;
}
