:root {
    --clr-dark: #0f172a;
    --clr-light:#829db7;
    --clr-accent:#e11d48;

}

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

html, body{
    height: 100vh;
    margin: 0;         
}

body{
    margin: 0;
    line-height: 1.6; 
    word-spacing: 1.4px;
    font-family: 'Roboto', sans-serif;
    color: var(--clr-dark);
    background-color: var(--clr-light);

}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cae0d0;
    margin-bottom: 10px;
}

.titulo{
    display: flex;
    justify-content: center;
    flex-grow: 1;
}
h1{
    font-weight: 100;
    
}
.logo{
    height:90px ;
    margin-right: 10px;

}



section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;

}

.contenedor{
    width: 90%;
    height: auto;
    /* margin: 0 auto; */
    border: 5px solid var(--clr-dark);
    border-radius: 10px;
}
.galeria{
    margin: 10px;
    /* columns: 200px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

}

/*-------------------------------------*/

.galeria img{
    width: 250px;
    height: 280px;
    cursor: pointer;
    transition: 0.3s;
    margin: 5px;
    aspect-ratio: 9/16;
    object-fit: contain;
    background-color:#f6b62f;
    border-radius: 10px;
}

.lightbox{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding-top: 50px;
}

.lightbox img{
    max-width: 90%;
    max-height: 80vh;
}

.lightbox:target{
    display: block;
}
/* .close{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    text-decoration: none;
} */

footer{
    margin-top: 20px;
    text-align: center;
    background-color: #cae0d0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
}
footer img{
    width: 40px;
}

.pie_de_pagina{
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: 400;
    font-style: italic;
    color: #f6b62f;
}

.item-1{
    padding-left: 10px;
}
.item-2{
    flex-grow: 1;
}