/* The white page and red mark shown for the few seconds the app takes to load
   (SPEC 12). A file, not inline, so the security rules can refuse inline styles. */
html,
body {
  margin: 0;
  height: 100%;
  background: #ffffff;
}

#loading {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font: 500 15px/1.4 -apple-system, "Segoe UI", system-ui, sans-serif;
  color: #5f5c5d;
}

#loading img {
  border-radius: 12px;
}

#loading p {
  margin: 0;
}
