/* Algemene stijl */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f0f8;
  color: #080606;
  line-height: 1.6;
  padding: 20px;
  margin: 0;
}

.grid-container {
  display: grid;
  gap: 20px;

  /* telefoon */
  grid-template-columns: 1fr;
  grid-template-areas:
    "banner"
    "title"
    "photos"
    "text"
    "video"
    "links"
    "footer";
}

.banner {
  grid-area: banner;
  background-color: #5d5d85;
  color: white;
  padding: 20px;
  text-align: center;
}

.banner-images img {
  width: 100px;
  margin: 0 5px;
}

.title {
  grid-area: title;
  text-align: center;
}

.photos {
  grid-area: photos;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photos img {
  width: 100%;
  border-radius: 8px;
}

.text {
  grid-area: text;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
}

.video {
  grid-area: video;
}

.links {
  grid-area: links;
  background-color: #e8e8ff;
  padding: 10px;
  border-radius: 8px;
}

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

.links a {
  text-decoration: none;
  color: #000080;
}

.footer {
  grid-area: footer;
  text-align: center;
  padding: 15px;
  background-color: #1a1a40;
  color: white;
}

/* pc */
@media screen and (min-width: 1024px) {
  .grid-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "banner banner"
      "title title"
      "photos text"
      "video links"
      "footer footer";
  }

  .photos img {
    width: 48%;
  }

  .photos {
    justify-content: space-between;
  }
}
