body {
    
}
*{
    box-sizing: border-box;
    margin:0;
    padding:0;
}

#inicio{
    width: 50px;
    height: 50px;
    background:#000000;
}

#inicio:target {
    transition:transform 0.5s ease-in-out;
    transform: translateX(100%);
}

.galeria{
    background: #ffffff;
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    width: 100%;
    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:300px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.light-box {
    position: fixed;
    top:0;
    
    background: rgba(0,0,0, .5);
    transition: transform .3s ease-in-out;
    width:50%;
    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: 80px;
    right:20px;
    background: #851919;
    color:#fff;
    text-decoration: none;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height:40px;
    border-radius:50%;
}

.next{
    display:block;
    background: #851919;
    color: #fff;
    height: 40px;
    width:40px;
    padding:15px;
    line-height:40px;
    text-decoration:none;
    text-align: center;
}

