body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f0f0f0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  justify-items: center;
}

.image-card {
  width: 200px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.image-card:hover {
  transform: scale(1.05);
}

.image-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.image-card p {
  margin-top: 8px;
  font-weight: bold;
}


#fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
}

#fullscreen img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

#fullscreen p {
  color: white;
  margin-top: 20px;
  font-size: 20px;
}