/* Algemene opmaak */
body {
  font-family: 'Roboto Slab', serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

/* De witte basiskaart */
.container {
  max-width: 480px;
  width: 100%;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Specifiek voor de homepage (alles gecentreerd) */
.home-container {
  text-align: center;
}

.home-container p {
  font-size: 0.85em;
  margin: 8px 0;
}

/* Specifiek voor tekstpagina's (links uitgelijnd, iets breder voor leesbaarheid) */
.text-container {
  max-width: 640px;
  text-align: left;
}

.text-container p {
  font-size: 0.9em;
  margin-bottom: 15px;
  line-height: 1.6;
}

.text-container h1 {
  font-size: 1.6em;
  margin: 0 0 15px;
}

/* Tussenkoppen binnen de body van een tekstpagina */
.text-container h4 {
  font-family: 'Candal', sans-serif;
  font-size: 1.05em;
  font-weight: normal;
  margin: 28px 0 8px;
}

.text-container ul {
  margin: 0 0 15px;
  padding-left: 22px;
  font-size: 0.9em;
  line-height: 1.6;
}

.text-container li {
  margin-bottom: 8px;
}

/* Datumregel bovenaan een tekstpagina */
.last-updated {
  color: #777;
  font-size: 0.8em;
  margin-bottom: 20px;
}

/* Afsluitende terug-naar-home regel */
.footer-back {
  border-top: 1px solid #eee;
  margin-top: 35px;
  padding-top: 15px;
  text-align: center;
}

.footer-back p {
  font-size: 0.8em;
  color: #777;
  margin: 0;
}

/* Navigatie menu */
nav {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

nav a {
  margin: 0 12px;
  color: #333;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
}

nav a:hover {
  color: #0066cc;
}

/* Typografie & Links */
h1 {
  font-family: 'Candal', sans-serif;
  margin: 20px 0 15px;
  font-size: 1.8em;
  text-align: center;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Afbeeldingen */
.profile-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}