
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #f009b6;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HEADER */
h1 {
  margin: 40px 0 20px 0;
  font-size: 2rem;
  text-align: center;
}

/* WRAPPER (keeps gallery centered and controlled) */
.gallery-wrapper {
  width: 95%;
  max-width: 1200px; /* prevents stretching on huge monitors */
}

/* GRID */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* IMAGE CARD */
.gallery-item {
  background: #1c1c1c;
  border-radius: 14px;
  overflow: hidden;
  height: 300px; /* controls image size */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crops nicely */
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-item {
    height: 220px;
  }
}
