.full-size {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 80%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px;
  text-align: center;
}

.full-size--image {
  max-width: 100%;
  max-height: 60vh;
  display: block;
  margin: 0 auto;
}

.full-size--image-description {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}

.full-size--index {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 1.2rem;
  color: #333;
}

.full-size--close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-size: 1.5rem;
}

.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.thumbnails img {
  height: 80px;
  cursor: pointer;
  transition: transform 0.2s;
}

.thumbnails img:hover {
  filter: blur(0);
}

.thumbnails img {
  filter: blur(4px);
}


.full-size--prev,
.full-size--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;

}

.full-size--prev {
  left: 10px;
}

.full-size--next {
  right: 10px;
}