body {
  font-family: Verdana, sans-serif;
  background-color: #f0f0f0;
}

/* De inhoud classe van het te laden file conform het script in route.html */
.inhoud {
  width: 100%;
}

.link-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Twee kolommen */
  gap: 10px;
  /* Ruimte tussen de items */
  background-color: #f0f0f0;
  /* Lichte tint voor de achtergrond */
  padding: 15px;
  border-radius: 8px;
  /* Rond de hoeken iets af */
  max-width: 400px;
  /* Max breedte om een kader te vormen */
  margin: 20px auto;
  /* Centraal op de pagina */
}

.menu-item {
  text-decoration: none;
  color: #333;
  /* Donkere kleur voor tekst */
  background-color: #ccccff;
  /* Witte achtergrond voor de knoppen */
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s;
}

.menu-item:hover {
  background-color: #e0e0e0;
  /* Hover-effect */
}

h2 {
  margin: 60px 0px 10px 0px;
  padding-left: 15px;
  color: burlywood;
}

.h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: burlywood;
  font-size: 32px;
  font-weight: 400;
  padding: 50px 0px 100px 0px;
  text-align: center;
  max-width: 500px; /* Maximale breedte van 500px */
  margin: 0 auto; /* Centrer de container */
  height: auto; /* Hoogte automatisch aanpassen */
}

a {
  color: slateblue;
}

a:hover {
  color: lightcoral;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #1c1c1c;
  }

  .menu-item {
    background-color: goldenrod;
    color: darkgreen;
  }

  a {
    color: lightskyblue;
  }

  a:hover {
    color: orange;
  }

  h2 {
    color: lightseagreen;
  }

  .h2 {
    color: lightseagreen;
  }
}
