

/***** Pantalla de Inicio ******/
html{
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.hero-imagen {
    
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-texto {
    text-align: center;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -60%);
    color: white;
}

.hero-texto h1{
    font-size: 50px;
}



.hero-footer{
    display: none;
    margin-bottom: 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    color: white;
}

.hero-footer address{
    margin-bottom: 0;
}

@media only screen and (min-height:400px){
    .hero-footer{
        display: block;
    }
}

@media only screen and (max-width:600px){
    #cuerpo{
        display:flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        
    }
    #obras{
        height:10% !important;
    }
    #pinturas{
        height:10% !important;
    }
    #zocalo{
        height: 10% !important;
    }
}

 /***** Menu ******/

#obras{
    margin: 0;
    padding: 0;
    max-width:50%;	
    float:left;	  
    position: relative;
    text-align: center;
    color: white;
}

#pinturas{
    margin: 0;
    padding: 0;
    max-width:50%;
    float:right;
    position: relative;
    text-align: center;
    color: white;
}

.top-centered {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#obras img, #pinturas img{
    padding: auto;
    width: 100%;
    height: auto;
}

#obras a:link h1, #obras a:visited h1, #obras a:hover h1, #pinturas a:link h1, #pinturas a:visited h1, #pinturas a:hover h1{
    color:#FFF;
    text-decoration:none;
    font-size:3em;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-weight:bold;
}

#zocalo{
    color:#FFF;
    width:100%;
    bottom:0;	
}

#zocalo p{
    font-size:0.8em;	
}

/**** fin Menu ***/