/* Estilos de carregamento inicial — aplicados antes da hidratação React.
   Evita flash de fundo branco (FOUC) sem depender de style inline no HTML. */
body {
  min-height: 100vh;
  background: var(--background, #FAFAFA);
  margin: 0;
  line-height: 1.5;
}

.prose-container {
  max-width: 75ch;
  margin: 0 auto;
}

#root {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: inherit;
}

#root > p:first-child {
  font-family: system-ui, sans-serif;
  color: #71717A;
}
