*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
font-family:'Raleway',sans-serif;
background-color: rgb(250, 158, 0);

}
.centrado {

    background-color: #0d7eff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}
.hidden {
    overflow: hidden;
}
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
h1{
    font-weight: 4oo;
    text-align: center;
    padding: 20px o;
    font-size: 40px;
}
.linea{
    background: #550b51;
    height: 5px;
    width: 100%;
    display: block;
}
.galeria{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 95%;
    margin: auto;
    grid-gap: 10px; 
    padding: 40px 0;
    overflow: hidden;   
    
}
.galeria img{
    width: 100%;
    vertical-align: top;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}
.galeria > a{
display: block;
position: relative;
overflow: hidden;
box-shadow: 0 0 6px rgba(0, 0 ,0 ,.5);
}
.galeria a:hover img{
filter: blur(2px);
transform: rotate(10deg) scale(1.3);
}
.light-box{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, rgba(0, 0 ,0 ,.5));
    transition: transform .3s ease-in-out;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center ;
    transform: scale(0);
}
.light-box img{
    width: 75vw ;
    max-height: 70vh    ;
}
.light-box:target{
    transform: scale(1);
}
.close{
    display: block;
    position: absolute;
    top: 40px;
    right: 4opx;
    background: #851919;
    color: #fff;
    text-decoration: none ;
    width: 40px;
    height: 4opx;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}
.next {
    display: block;
    background-color: #851918;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-decoration: none;
    text-align: center;
}