/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --ink: #171717;
  --muted: #555f68;
  --line: #e8ecef;
  --brand: #075e83;
  --page: #fff;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  background: var(--page);
  color: var(--ink);
  text-rendering: optimizelegibility;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.shell {
  text-align: center;
  align-content: center;
  place-items: center;
  gap: 24px;
  min-height: 100svh;
  padding: 32px;
  display: grid;
}

.logo {
  width: min(300px, 74vw);
  height: auto;
  display: block;
}

p {
  max-width: 28rem;
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
  :root {
    --lightningcss-light: initial;
    --lightningcss-dark: ;
    color-scheme: light;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/