.h1galeria{
  text-align: center;
  font-size: 80px;
  color: #242076;
  background-color: rgb(170, 169, 169);
  border-radius: 10px;
  margin-top: 15px;
}



.gridprincipal{
  padding: 25px ;
  border-radius: 10px;
  background-color: rgb(170, 169, 169);
  /*background-color: #F1A41E;*/
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  justify-items: center;
}




.gridtotal{
  border-radius: 10px;
  border: solid #242076;
  width: 650px;
  height: 450px;
}

@media(max-width:950px) {
  .gridprincipal{
    grid-template-columns: 1fr;
  }
}

@media(max-width:500px) {
  .gridtotal{
    border-radius: 10px;
    border: solid #242076;
    width: 340px;
    height: 420px;
  }

  .h1galeria{
    font-size: 40px;
  }
  .gridprincipal img{
    width: 310px;
    height: 350px;
  }

  }
 body{
  max-width: auto;
  max-height: auto;
 }

