body {
 background-color: rgb(255, 255, 255);
 margin-top: 70px;
}
header{
  background: #000000;
}
h1{
  margin-top: 5rem;
  font-weight: 400;
  text-align: center;
  padding: 20px 0;
  font-size: 2.5vw;
}

/* .linea{
  background: #550b51;
  height: 5px;
  width: 100%;
  display: block;
} */

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit,  minmax(80px, 1fr));
  width: 95%;
  margin: auto;
  grid-gap: 10px;
  padding: 40px 0;
  overflow: hidden;
}

.galeria > a{
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, .5);
}

.galeria img{
  width: 100%;
  vertical-align: top;
  /* height: 80px; */
  object-fit: cover;
  transition: 0.5s;
}

.galeria a:hover img{
  filter: blur(2px) brightness(.85);
  transform: rotate(10deg) scale(1.5);
}

.light-box{
  position: fixed;
  top: 0;
  left: 0;
  
  transition: transform .3s ease-in-out;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
}

.light-box__img {
  width: 75vw;
  max-height: 70vh;
}

.light-box:target{

  transform: scale(.7);
}
#image14:target,
#image13:target{

  transform: scale(.4);
}




.close{
  display: block;
  position: absolute;
  font-size: 40px;
  top: 50px;
  right: 50px;
  background: #145817;
  color: rgb(255, 255, 255);
  text-decoration: none;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
}

.next{
  display: block;
  font-size: 60px;
  color: rgb(36, 117, 61);
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
}
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.especi > h1{
  
  max-width: 820px;
  border: 1px solid #000;
  color: #000000;
  margin-left: 15px;
  margin-top: 1rem;
  margin-bottom: 20px;
  margin-right: 15px;
  font-weight: 400;
  text-align: left;
  padding: 10px 20px;
  font-size: 26px;
}
.especi > h3{
  
  
  margin-left: 15px;
  margin-top: 1rem;
  
  margin-right: 15px;
  font-weight: 400;
  text-align: left;
  
  font-size: 16px;
}
.especi > p{
  
  max-width: 820px;
  border: 1px solid #000;
  color: #000000;
  margin-left: 15px;
  margin-top: 1rem;
  margin-bottom: 20px;
  margin-right: 15px;
  font-weight: 100;
  text-align: left;
  padding: 20px 30px;
  font-size: 16px;
}
.especi > img{
  width: 100%;
  vertical-align: top;
  object-fit: cover;
  transition: 0.5s;
}



