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

body{
    margin: 0;
    min-height: 100vh;
    background-image: url(../IMAGENES/finpec.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header{
    widows: 100vw;
    /* background-color: rgb(19, 161, 204); */
    overflow: hidden;
}

header img{
    height: 215px;
    width: 100%;
    overflow: hidden;
}


#titulo{
    width:100%;
    padding: 1em;
    /* background: rgba(42, 110, 119, 0.5); */
    font-size: 2em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    color:rgba(255,255, 255, 1);
    -webkit-text-stroke: 1px black;
    
}

.galeria__item img{
    display: block;
    max-width: 100%;
    max-height: 350px;
   
    
}

.galeria{
    padding: 20px;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-between;

    overflow: auto;

}

.galeria__item{
    width: 70%;
    max-height: 350px;
    cursor: pointer;
    border: solid rgb(19, 161, 204);
    overflow: hidden;
} 


@media (min-width:480px){
    .galeria__item{
        width: 48%;
        margin: 5px;
    }
}
@media (min-width:768px){
    .galeria__item{
        width: 33%;
    }
}
@media (min-width:1024px){
    .galeria__item{
        width: 20%;
        margin: 15px;
    }
}

.modal {
    /*border: solid rgb(0, 245, 245);*/
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    top: 0;
    left: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal h1{
    color: white;
    font-weight: bold;
    font-size: 40px;
    line-height: 50px;
    -webkit-text-stroke: 1px black;
    position: absolute;
    top: 20px;
    align-items: center;

}

.modal__img{
    width: 70%;
    max-width: 700px;
    max-height: 80%;
    border: solid rgb(19, 161, 204);
}

.modal__boton{
    width: 50px;
    height: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    font-family: monospace;
    line-height: 50px;
    text-align: center;
    background: red;
    border-radius: 50%;
    cursor: pointer;

    position: absolute;
    right: 10px;
    top: 10px;
} 

.botons{
    position: fixed;
    right: 0px;
    top: 370px;   
    z-index: 2000;
    }
ul {
    list-style: none;
}

.botons ul li a{
    display: inline-block;
    padding:5px; 
}

.botons ul li a:hover{
    padding: 10px 20px; 
    background: rgb(240, 80, 6);
    border-radius: 10%;
}

/* -----RESPONSIVE----- */
@media screen and (max-width: 800px){
       
.botons{
    /*background-color: rgba(179, 179, 179, 0.5);*/
    position: fixed;
    right: 10px;
    top: 200px;   
    z-index: 2000;
    
    }

    .botons{
        margin-right: -5px;
    }
    .botons img{
        width: 20px;
        height:20px;
    }
}

}