.thumbnail {
  width: 200px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.thumbnail:hover {
  transform: scale(1.05);
}

.modal {
  display: none; 
  position: fixed;
  z-index: 1100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: 5% auto;
  max-width: 25%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
