* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; 
  background-color: #f0f2f5;
  color: #577ba0;
  padding: 20px;
}

header.banner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
}

header.banner img {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

@font-face {
  font-family: 'titelfont';
  src: url('fonts/Wilker-drVwl.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

h1 {
  text-align: center;
  margin: 20px 0;
  color: #001489;
  font-family: 'DM Sans', sans-serif;
  font-size: 4rem;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid .item {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.foto img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 6px;
}

.links ul {
  list-style-type: none;
  padding-left: 0;
}

.links a {
  color: #1470bc;
  font-weight: bold;
  text-decoration: none;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #ffffff;
  color: #001489;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr; 
  }

  .foto {
    grid-row: 1;
  }

  .uitleg {
    grid-row: 2;
  }

  .video {
    grid-row: 3;
  }

  .links {
    grid-row: 4;
  }
}
