/* Page de garde de `web` — jetons recopiés de
   docs/design-system/front/colors_and_type.css. Aucune valeur inventée. */

:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --muted-foreground: 215.4 16.3% 43%;
  --brand-purple: 250 50% 37%;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: 34rem;
  text-align: center;
}

.wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 32px;
  color: hsl(var(--brand-purple));
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.wordmark svg {
  display: block;
  width: 36px;
  height: 36px;
}

h1 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.lead {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 16px;
}
