body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: #333;
}

.container {
  font-size: 24px;
  text-align: justify;
}

.header-container {
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.header-image {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-nav {
  display: flex;
  justify-content: center;
  font-size: x-large;
  gap: 10px;
}

.top-nav a {
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: normal;
  color: white;
}

.top-nav a.active {
  text-decoration: underline;
}

.top-nav a:nth-child(1) {
  background: #6b52a3; /* paars */
}

.top-nav a:nth-child(2) {
  background: #e08c36; /* oranje */
}

.top-nav a:nth-child(3) {
  background: #d33a32; /* rood */
}

.top-nav a:nth-child(4) {
  background: #e6b52c; /* geel */
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}



@media (max-width: 600px) {
  .top-nav {
    flex-direction: column;  
    align-items: stretch;
  }
  .top-nav a {
    margin-left: 5px;
    margin-right: 5px;
    box-sizing: border-box;
    text-align: center;
  }

  .header-container {
    height: 120px;  
  }
  .image-text {
    flex-direction: column;
  }
}

.image-text {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.image-text img {
  width: 300px;
}