@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-start: #f8fafc;
  --bg-end: #e2e8f0;
  --panel-bg: rgba(255, 255, 255, 0.8);
  --accent: #3b82f6;
  --text-primary: #1e293b;
  --text-muted: #64748b;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(to bottom, var(--bg-start), var(--bg-end));
  color: var(--text-primary);
  margin: 0;
  padding: 0 1.5rem 3rem;
  min-height: 100vh;
}

header {
  text-align: center;
  margin-top: 2.5rem;
}

header h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--text-primary);
}

main {
  width: 100%;
  display: flex;
  justify-content: center;
}
