@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: Titel;
  src: url(/fonts/CrimsonText-Italic.ttf);
}

@font-face {
  font-family: Tekst;
  src: url(/fonts/Cormorant-Regular.ttf);
}



body {
background:rgb(41, 43, 51);
   color: #fff1d8;
  font-family: 'Source Sans Pro', sans-serif;
}


main {
  display: grid;
  grid-template-areas:
    "banner banner"
    "title title"
    "fotos uitleg"
    "video lijst"
    "footer footer";
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}


.banner {
  grid-area: banner;
  background:rgb(244, 244, 226);
  border: 2px solid #eee;
  height: 200px;
  overflow: hidden;
  border-radius: 0.5rem;
  position: relative;
  z-index: 1;
  display: flex;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
  z-index: 1;
  position: relative;
  width: 50%;
}


.title {
  grid-area: title;
  font-family: 'Titel';
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 2px solid #eee;
  font-size: 500%;

}


.fotos {
  grid-area: fotos;
background:rgb(99, 104, 125);
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  border: 2px solid #eee;
}
.fotos img {
  width: 100%;
  max-width: 300px;
  border-radius: 0.3rem;
  transition: filter 0.3s;
}
.fotos img:hover {
  filter: none;
  cursor: pointer;
}


.uitleg {
  grid-area: uitleg;
  background:rgb(99, 104, 125);
  padding: 2rem;
  font-style: italic;
  border: 2px solid #eee;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Tekst';
  border-radius: 0.5rem;
}

.video {
  grid-area: video;
  background:rgb(99, 104, 125);
  border: 2px solid #eee;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}


.lijst {
  grid-area: lijst;
  background:rgb(99, 104, 125);
  padding-left: 2rem;
  color: #fff1d8;
  border-radius: 0.5rem;
  border: 2px solid #eee;
  font-family: 'Tekst';
  
}
.lijst ul {
  list-style: none;
}
.lijst li {
  margin-bottom: 0.8rem;
  font-weight: bold;
}
.lijst li a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dotted #fff;
}
.lijst li a:hover {
   color: #fff1d8;
  border-bottom: 1px solid #bfa980;
}


.footer {
  grid-area: footer;
  text-align: center;
  padding: 1rem;
  font-size: medium;
  border-top: 2px solid #eee;
  font-weight: 400;
  font-family: 'Tekst';
  
}


@media (max-width: 1000px) {
  main {
    grid-template-areas:
      "banner"
      "title"
      "fotos"
      "video"
      "uitleg"
      "lijst"
      "footer";
    grid-template-columns: 1fr;
  }
  @font-face {
  font-family: Tekst;
  src: url(/fonts/Cormorant-Regular.ttf);
}
  .fotos {
    flex-direction: column;
  }
}

