body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: black;
  transition: background-color 0.3s, color 0.3s;
}

.grid-container {
  display: grid;
  grid-template-rows: 80px 1fr;
  grid-template-columns: 1fr;
  height: 100vh;
}

.balk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: rgb(255, 255, 255);
  border-bottom: 2px solid #ddd;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.balk nav {
  display: flex;
  gap: 32px;
}

.balk nav a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 24px;
}

.logo img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}

.logo kleur {
  color: #000000;
  text-decoration: none;
}

.midde {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  text-align: center;
  padding: 40px 20px;
  background: #fafafa;
}

.midde p {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 800px;
  align-items: center;
}

.midde img {
  width: 100%;
  height: 500px;
  max-width: 1000px;
  border-radius: 60px;
  margin-top: 50px;
}

.midderij {
  gap: 10px;
  display: flex;
  justify-content: center;
}

.midderij img {
  width: 500px;
  height: 340px;
  border-radius: 16px;
}

.lijst {
  list-style: none;
  text-align: left;
  color: rgb(0, 0, 0);
  font-size: 30px;
  text-decoration: none;
}

.lijst a {
  color: rgb(0, 0, 0);
}

.dark {
  background-color: #000000;
  color: #e0e0e0;
}

.buton {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.dark .midde {
  background: #181818;
}

.dark .balk {
  background: #222;
  border-bottom: 2px solid #444;
}
