@charset "utf-8";
/* CSS Document */


h1 {
  margin: 20px 0;
  color: #333;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

function openModal() {
document.getElementById('imageModal').style.display = 'block';
}
function closeModal() {
document.getElementById('imageModal').style.display = 'none';
}