header {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 40px;
    text-align: center;
    background-color: rgb(196, 174, 147);
}

 body {
    background-color: rgb(240, 222, 189);
 }
table{
  font-size: 20px;
  border-collapse:collapse;
  display:flex ;
  gap: 30px;
  margin-top: 3dvb;
  background-color: antiquewhite;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 1);
  
}

h1 {
    background-color: antiquewhite;
}
 img {
     width: 400px;
     margin-top: 25px;
     margin-left: 500px;
     display: block;
 }

#mostrar-info {
     
     background-color: rgb(104, 85, 62);
     color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  margin-top: 20px;
}

#info-oculta {
  background-color: #fff3e0;
  padding: 15px;
  border-left: 5px solid rgb(196, 174, 147);
  font-size: 20px;
  border-radius: 6px;
  margin-top: 15px;

}

#mostrar-imagenes {
  background-color: rgb(104, 85, 62);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 20px;
}

#galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

#galeria img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

#galeria img:hover {
  transform: scale(1.05);
}

footer {
    text-align: center;
    background-color: rgb(196, 174, 147);
    padding: 5px; ;
    font-size: 20px;
    margin-top: 20px;
}
