/*
 * What the page shows between the first byte and the first React render.
 *
 * A static file rather than a `<style>` in `index.html`: this application keeps
 * a bearer key in `localStorage`, so its packaging serves a strict
 * Content-Security-Policy, and one inline style would force the whole document
 * open with `style-src 'unsafe-inline'`. `index.html` therefore carries no
 * inline style and no inline script at all.
 *
 * Not part of the bundle either: the bundle is what this styles the wait for.
 */
.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fafafa;
  font-family: sans-serif;
  color: #283593;
}
