body {
  font-family: sans-serif;
  margin: 0;
  padding: 20px;
  background: #111;
  color: #eee;
}

header {
  margin-bottom: 20px;
}

nav a, header a {
  margin-right: 15px;
  color: #7db9ff;
  text-decoration: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  text-align: center;
}

.gallery-item h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: normal;
}

.caption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-item img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gallery-item img {
  aspect-ratio: 3 / 4; /* o quello che preferisci */
  object-fit: contain;
}

.caption {
  margin-top: 10px;
  font-size: 1.05rem;      /* ingrandito */
  line-height: 1.6;
  color: #ffffff;         /* bianco */
  text-align: justify;    /* giustificato */
}



