body{
margin: 0;
}
.content{
max-width: 1200px;
margin: 24px auto;
max-height: 1000px;
}
header {
    margin: 0;
    overflow: hidden;
    background: #0b3d2e;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* quitar estilo de lista */
header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* links */
header ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 6px;
    transition: 0.3s;
}

/* hover bonito */
header ul li a:hover {
    background: #1e7a57;
    color: #fff;
}
h1{
text-align: center;
color: #061125;
}


#gallery {
  max-width: 1600px;
  margin: 24px auto;  
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  padding: 10px;
}

/* Estilo general de las imágenes */
#gallery img {
  width: 100%;
  aspect-ratio: 1 / 1; /* cuadradas perfectas */
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Efecto al tocar o pasar el mouse */
#gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* call */
p{
color: #1e7a57;
font-size: 22px;
text-align: center;
}