html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

header {
  background-color: #333;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: relative;
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -0.8rem;
}

.header-navigation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-family: "Oswald", sans-serif;
}

.header-navigation a {
  color: white;
  text-decoration: none;
}

.header-navigation a:hover {
  color: lightgray;
}

.header-navigation a img {
  position: static;
}

.home--banner {
  position: relative;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.home--banner__text {
  position: relative;
  color: white;
  text-align: center;
  max-width: 80%;
}

.title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 10rem;
  font-family: "Oswald", sans-serif;
}

.wat {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 3rem;
}

.pijl {
  padding: 5rem;
}

.mimifotografie {
  margin-top: 9rem;
}

h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 1rem;
  font-size: 2rem;
  line-height: 2.5rem;
  font-family: "Oswald", sans-serif;
}

main {
  font-family: Arial, Helvetica, sans-serif;
  padding: 2rem;
  line-height: 1.5rem;
}

body {
  background-color: #333;
  font-family: Arial, sans-serif;
  color: white;
}

.content {
  text-align: center;
  margin: 0 auto;
}

.content p {
  margin-bottom: 1rem;
}

section {
  margin-bottom: 3rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 1rem;
  row-gap: 1rem;
  justify-content: center;
  justify-items: center;
}

.image-gallery img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

audio {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  display: block;
  background-color: #333;
  border-radius: 0.5rem;
}

video {
  width: 100%;
  max-width: 22rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

.about-section {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  color: white;
  align-items: center;
}

.about-section img {
  border-radius: 0.2rem;
  margin: 1.8rem;
}

.about-section p {
  max-width: 600vw;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

.contact {
  text-align: center;
  padding: 2rem;
  color: white;
  margin: 3rem;
}

.contact a {
  text-decoration: none;
  background-color: white;
  opacity: 80%;
  color: #333;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact a:hover {
  background-color: white;
  transform: translateY(-2px);
}

.content {
  max-width: 60ch;
  margin: 0 auto;
}

footer {
  text-align: center;
  background-color: #333;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  padding: 2rem;
  font-size: 0.8rem;
  line-height: 1.5rem;
  height: 10vh;
  box-sizing: border-box;
  margin-bottom: 2rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-navigation {
    flex-direction: row;
    justify-content: space-around;
  }

  .title {
    font-size: 3rem;
    margin-top: 17rem;
  }

  .home--banner {
    height: 60vh;
  }

  .mimifotografie {
    padding-top: 20rem;
  }

  .image-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .pijl {
    margin-top: 5rem;
  }

  .content {
    max-width: 80ch;
    margin: 0 auto;
  }

  video {
    max-width: 30rem;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .header-navigation {
    flex-direction: row;
    gap: 2rem;
  }

  .title {
    font-size: 3.5rem;
    margin-top: 15rem;
  }

  .home--banner {
    height: 65vh;
  }

  .image-gallery {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .mimifotografie {
    padding-top: 20rem;
  }

  footer {
    font-size: 0.9rem;
  }

  .content {
    margin: auto;
    max-width: 50rem;
  }
}

@media (min-width: 1281px) {
  .header-navigation {
    flex-direction: row;
    gap: 2rem;
  }

  .title {
    font-size: 4rem;
  }

  .mimifotografie {
    padding-top: 15rem;
  }

  .home--banner {
    height: 70vh;
  }

  .image-gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  footer {
    font-size: 1rem;
  }

  .image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .content {
    margin: auto;
    max-width: 50rem;
  }
}
