@charset "utf-8";
* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
#contenedorPal {
    max-width: 900px;
    width: 100%;
}
#albumVideos {
    position: relative;    
}

#video1 {    
    width: 100%;
    height: auto;
    display: block;    
}

#albumVideos > video:not(:first-of-type) {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;    
    transform: scale(0,1);
}
#albumVideos video {
    transition: transform 1s linear 0s, opacity 1s linear 0s;
    opacity: 0;
}
#controlVideos {
    display: flex;     
    justify-content: left;
    margin: 0em 0em 1em 3em;
}
#controlVideos > span {
    font-size: larger;
    font-weight: bold;
}
#controlVideos >span:not(:nth-of-type(2)) {
    cursor: pointer;
}
#videoVisorPantalla {
    margin-left: 3em;
    margin-right: 3em;
}

#contenedorPal #albumVideos .videoSalirDerecha {
    transform-origin: right center;
    transform: scale(0,1);
    opacity: 0;   
}
#contenedorPal #albumVideos .videoSalirIzquierda {
    transform-origin: left center;
    transform: scale(0,1);
    opacity: 0;   
}
#contenedorPal #albumVideos .videoEntrarDerecha {
    transform-origin: right center;
    transform: scale(1,1);
    opacity: 1;   
}
#contenedorPal #albumVideos .videoEntrarIzquierda {
    transform-origin: left center;
    transform: scale(1,1);
    opacity: 1;   
}