html,
body {
  margin: 0;
  padding: 0;
  background: #f4f0e7;
}

html.dark,
html.dark body,
html.dark .boot-shell {
  background: #171411;
  color: #d8a476;
}

html.dark .boot-shell.boot-failed {
  color: #ff9387;
}

html.light,
html.light body,
html.light .boot-shell {
  background: #f4f0e7;
  color: #3c5b52;
}

html.native-ios,
body.native-ios {
  min-height: 100%;
  min-height: -webkit-fill-available;
  background: #f9f8f6;
}

html.native-ios.dark,
body.native-ios.dark {
  background: #171411;
}

.boot-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: #f4f0e7;
  color: #3c5b52;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.boot-shell-inner {
  text-align: center;
}

.boot-shell img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
}

.boot-shell p {
  margin: 12px 0 0;
  font-size: 14px;
}

.boot-shell.boot-failed {
  color: #8f2f25;
}

@media (prefers-color-scheme: dark) {
  html:not(.light):not(.dark),
  html:not(.light):not(.dark) body,
  html:not(.light):not(.dark) .boot-shell {
    background: #171411;
    color: #d8a476;
  }

  html:not(.light):not(.dark) .boot-shell.boot-failed {
    color: #ff9387;
  }
}
