* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.TITULO {
    color: rgb(81, 0, 148);
    text-align: center;
    font-size: 2vw; 
    margin: 10px;
}

.tituloprincipal {
    font-size: 3vw;
    text-align: center;
    margin: 10px;
}

body {
    background-color: rgb(209, 237, 255);
    
    }


h1 {
    color:rgba(65, 0, 150, 0.589);
    font-size: 3em;  
    text-align: center;
}

p {
    color:rgba(52, 0, 121, 0.589);
    font-size: 2em;   
    margin: 20px;
    padding: 0 15px;
    line-height: 1.6;  
}


.textos {
    font-size: 1vw;  /* Se ajusta según el ancho de la pantalla */
    text-align: center;
    margin: 10px;
}

  figure {
    text-align: center;
    margin: 20px;
  }
 
  .galeria {
    display: flex;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
   }

  .galeria figure {
    text-align: center;
    max-width: 400px;
    flex: 1 1 300px;  
    }

  .galeria img {
    width: 100%;              
    height: auto;            
    border-radius: 8px;       
    display: block;           
    margin: 0 auto;
  }

  figcaption {
    font-style: italic;
    color: rgb(10, 4, 4);
  }


  .sitios {
    align-items: center;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
    justify-content: center;
    gap: 20px; 
  }

  .sitios figure {
    text-align: center;
  }

  .sitios img {
    width: 20%;
    object-fit: cover;
    height: auto;             
    border-radius: 8px;       
    display: block;           
    margin: 0 auto;
  }




  
  
  
