/* basis styling komt straks */
/* ===== basis ===== */

* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

/* ===== layout ===== */

.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  background: white;
  min-height: 100vh;
}

/* ===== navigatie ===== */

nav {
  margin-bottom: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* ===== tekst ===== */

h1 {
  margin-top: 0;
}

footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #666;
}

