*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
h2{
  text-align: center;
  margin-bottom: 20px;
}
.gallery{
  max-width: 2600px;
  margin: auto;
}
.gallery-cell{
  width: 50%;
  max-height: 10px;
  margin-right: 9px;
}
.gallery-cell img{
  width: 100%;
  background-size: contain;
}

        h2 {
            font-size: 28px; /* Tamaño del texto */
            color: #333; /* Color del texto */
            text-align: center; /* Centrar el título */
            font-weight: bold; /* Negrita */
            text-transform: uppercase; /* Convertir a mayúsculas */
        }
     /* Estilo para la sección */
     .section {
      max-width: 800px;
      margin: 40px auto;
      padding: 20px;
      background-color: #f8f9fa; /* Color de fondo suave */
      border-radius: 10px; /* Bordes redondeados */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil */
      text-align: center;
  }

  /* Estilo para el título */
  .section h2 {
      font-size: 28px;
      color: #2c3e50;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 15px;
      border-bottom: 3px solid #3498db; /* Línea decorativa debajo del título */
      display: inline-block;
      padding-bottom: 5px;
  }

  /* Estilo para el párrafo */
  .section p {
      font-size: 19px;
      color: #555;
      line-height: 1.6;
      text-align: justify;
  }