/* Achtergrondkleur */
body {
  background-color: #f0f0f0; /* Pastelkleur naar keuze */
}

/* Lettertype */
body {
  font-family: "Josefin Sans", sans-serif;
}

/* Thumbnail-stijl */
.thumbnail {
  display: inline-block;
  margin: 5px;
  transition: transform 0.3s;
}

.thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail img {
  width: 100%; /* Pas aan op basis van je gewenste grootte */
  height: auto;
}

/* Volledige weergave van afbeelding */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay img {
  max-width: 90%;
  max-height: 90%;
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 24px;
}

/* Pijltjes */
.arrow-icon {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 24px;
  transform: translateY(-50%);
  cursor: pointer;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}
