:root {
  --bg-soft-blue: #F0F6FF;
  --navy-primary: #0F172A;
  --navy-secondary: #1E293B;
  --accent-blue: #2563EB;
  --text-muted: #64748B;
  --white: #FFFFFF;
}

body {
  margin: 0;
  background-color: var(--bg-soft-blue);
  color: var(--navy-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h1 {
  font-size: 4rem;
  color: var(--navy-primary);
}
