@charset "utf-8";

* {
    box-sizing: border-box;
}
body {
    padding: 0px;
    border: 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.cuerpo {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
#contenedorPrincipal {
    max-width: 100%;    
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.textoCentro{
    width: 20%;
    height: auto;    
    font-size: 1.1em;
    text-align: justify;
}
.textoCentro .textoGlassy {

   padding: 2em;
}

#albumFotos{
    width: 80%;
    height: auto;
    margin-top: 2em;
    margin-right: 2em;
    margin-left: 2em;
    margin-bottom: 2em;
}

#album {    
    display: flex;
    position: relative;
    width: 100%;    
    height: auto;
    
}
#foto1 {
    margin-left: 2em;
    width: auto;
    height: 100%;
    display: block;
    margin-bottom: 2em;
}
#album img:not(:first-of-type) {
    margin-left: 2em;
    position: absolute;
    top: 0px;
    left: 0px;
    width: auto;
    height: 100%;    
    transform: scale(0,1);
}
#album img {
    transition: transform 1s linear 0s, opacity 1s linear 0s;
    opacity: 0;
    justify-items: center;
    width: auto;
    height: 100%;
}


#visorPantalla{
    margin-left: 2em;
    margin-right: 2em;
}
#pasarFoto {
    display: flex; 
    margin-bottom: 1em;  
    justify-content: left;
    margin-left: 3em;
    width: 100%;
}
#pasarFoto > span {
    font-size: larger;
    font-weight: bold;
}
#pasarFoto >span:not(:nth-of-type(2)) {
    cursor: pointer;
}

#contenedorPrincipal #album .salirderecha {
    transform-origin: right center;
    transform: scale(0,1);
    opacity: 0;   
}
#contenedorPrincipal #album .salirizda {
    transform-origin: left center;
    transform: scale(0,1);
    opacity: 0;   
}
#contenedorPrincipal #album .entrarderecha {
    transform-origin: right center;
    transform: scale(1,1);
    opacity: 1;   
}
#contenedorPrincipal #album .entrarizda {
    transform-origin: left center;
    transform: scale(1,1);
    opacity: 1;   
}

/* adaptcion para tablets */
@media screen and (max-width: 1300px){

    
    .textoCentro{
        width: 40%;
        height: auto;
        
    }

    #albumFotos{
        width: 60%;
        height: auto;

    }
    
    #album{ 
        width: 100%;           
        height: auto;        
        justify-content: space-around;
    }
    #album img {
        
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 1250px){

    #contenedorPrincipal {        
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        
    }
    .textoCentro{
        width: 100%;        
        font-size: 1em;
        text-align: justify;   
        margin: 0.5em;     
    }
    #albumFotos{
        width: 100%;
        height: auto;
        
    }
    #album{            
        width:100%;
        height: auto;
        
    }
    #pasarFoto{
        margin:0px;
        padding: 0px;       
        justify-content: center;        
        margin-bottom: 1em;         
        width: 100%;
    }

}

/* adaptcion para tablets */
@media screen and (max-width: 850px){

    #contenedorPrincipal {        
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        
    }
    .textoCentro{
        width: 100%;        
        font-size: 1em;
        text-align: justify;   
        margin: 0.5em;     
    }
    #albumFotos{
        width: 100%;
        height: auto;
        
    }
    #album{            
        width:100%;
        height: auto;
        
    }
    #pasarFoto{
        margin:0px;
        padding: 0px;       
        justify-content: center;        
        margin-bottom: 1em;         
        width: 100%;
    }
        

    }
    #album img {
        padding: 0.5em;
        width:100%;
        height: auto;
        justify-content: center;
    }
    
    
    

}