* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, serif;
  background: #f3f3f3;
  color: #222;
}

/* Header */
header {
  text-align: center;
  padding: 60px 20px 40px;
}

header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

header p {
  font-size: 18px;
  color: #555;
}

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 40px;
  padding: 40px 40px 40px;
}

.gallery-item {
  background: white;
  overflow: hidden;
  border: 1px solid #ccc;
  max-width: 450px; 
}

/* Images */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  aspect-ratio: 1 / 1; 
  transition: transform 0.3s ease;
}

/* Hover effect (desktop only vibe) */
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  header h1 {
    font-size: 28px;
  }

  .gallery {
    padding: 20px;
    gap: 15px;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  header p {
    font-size: 16px;
  }
}
