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

body{
    font-family: raleway, sans-serif;
    background-color: hsla(27, 48%, 50%, 0.2);
}
h1{
    font-weight: 600;
    text-align: center;
    padding: 20px 0;
    font-size: 40px;
}
.linea{
    background: #550b51;
    height: 5px;
    width: 100%;
    display: block;

}
.galería{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 95%;
    margin: auto;
    grid-gap: 10px;
    padding: 40px 0;
    overflow: hidden;
}
.galería img{
    width: 100%;
    vertical-align: top;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}
.galería > a{
display: block;
position: relative;
overflow: hidden;
box-shadow: 0 0 6px rgba(0, 0, 0, .5);
}
.galería a:hover img{
    filter: blur(2px);
    transform: rotate(10deg) scale(1.1);

}

#inicio:target{
    transition: transform 0.5 ease-in-out;
    transform: translate(500%);
}
.light-box{
    position: fixed;
    top: 0;
    left: 0;
    background: 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-width: 70vh;
}
.light-box:target{
    transform: scale(1)
}
.close{
    display: block;
    position: absolute;
    top: 40px;
    right: 40px;
    background: #924b4b;
    color: #fff;
    text-decoration: none;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;   
}
.next{
    display: block;
    background-color: #924b4b;
    color: #fff;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-decoration: none;
    text-align: center;
}

.chota{
    font-size: 30px;
    padding: 5;
    background-color: rgba(35, 23, 90, 0.2);
    font-weight: 600;
    border-radius: 5%;
    
}

.mail{
font-weight: 400;
text-align: center;
padding: 20px 0;
font-size: 35px;
color:#166bec;
text-decoration: none;
font-weight: 600;
}