/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 15-feb-2023, 9:54:11
    Author     : 106363
*/
body{
    margin:0;
    background: #e9e9e9;
    font-family:Arial;
}
header{
    position:fixed;
    display:flex;
    top:0;
    right:0;
    left:0;
    font-size: 2em;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid lightgrey;
}
footer{
    max-width: 1020px;
    margin: auto;
    height: 50px;
    background: white;
    margin-top: 5px;
    display: flex;
    flex-direction: row-reverse;
    border: 1px solid lightgrey;
}    
main{
    max-width: 1000px;
    margin: auto;
    padding: 10px;
    background: white;
    margin-top: 56px;
    border: 1px solid lightgray;
}
.icon{
    height: 30px;
    width: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 10px;  
}
.headtitle{
    height: 50px;
    width: 150px;
    margin: auto;
    background-size: cover;
}
.texto{
    margin:10px;
    flex: 1;
    min-width: 300px;
    text-align: justify;
}
.titulo{
    margin:10px;
    font-size: 1.5em;
    font-weight: bold;
}
.separator{
    border-bottom: 1px solid lightgray;
}
.imgsection{
    display:flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.galery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.imagen, .imagelink{
    height: 250px;
    width: 250px;
    margin: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin: 5px;
    border: 1px solid lightgray;
    padding-bottom: 20px;
}
.imgpie{
    background: white;
    position: absolute;
    right:0;
    left:0;
    bottom:0;
    padding: 5px;
    text-align: center;
}

.imgContainer{
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #000000AA;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bigImg{
    max-width: 98vw;
    max-height: 98vh;
}
.close{
    color:white;
    font-weight: bold;
    font-size: 2em;
    margin:10px;
    position: fixed;
    top:0;
    right:0;
        
}
.menuGroup{
    position: fixed;
    background: white;
    font-size: .6em;
    margin: 5px;
    border: 1px solid lightgray;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%);
}
.menuItem{
    min-width: 200px;
    padding: 10px;
    border-bottom: 1px solid lightgray;
}
*[data-hide="hide"]{
    display:none;
}