.galeria
{
  width: 90%;
  margin: auto;
  list-style: none;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.titalbums
{
color: #fff;
font-size: 2em;
margin-top: 20px;
}
.galeria li
{
  margin: 5px;
}
.galeria img
{
  width: 200px;
  height: 200px;
  border-radius: 25px;
  border: 2px solid white;
  padding: 10px;
  margin: 10px;
  box-sizing: border-box;
}
.modal
{
  display: none;
}
.modal:target
{
  display: block;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal h1
{
  color: #fff;
  text-align: center;
  margin: 10px 0;
  font-size: 30px;
}
.contimg
{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.contimg img.navegacion {
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
  border-radius: 0;
  transform: none;
}
.contimg li
{
  flex: 0 1 auto;
}
.contimg img
{
  width: 300px;
  height: 300px;
  border-radius: 25px;
  border: 2px solid white;
  padding: 10px;
  box-sizing: border-box;
  transition: transform 0.3s;
}
.contimg img:hover 
{
  transform: scale(1.05);
}

.modal .fotografia {
  width: auto;
  height: 80vh;
  max-width: 80vw;
  object-fit: contain;
  border: 5px solid white;
  border-radius: 20px;
  box-sizing: border-box;
}

