*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url(../Recursos/lago.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
h2{
    text-align: center;
    font-size: 40px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 50px;
    color: whitesmoke;
    text-shadow: 0px 0px 6px darkblue;
}
.container-lg img{
    cursor: pointer;
}
.content-all{
    width: 190px;
    margin: auto;
    perspective: 1000px;
    position: relative;
    margin-top: 50px;
}


.content-carrousel{
    width: 100%;
    position: absolute;
    animation: rotar 25s infinite linear;
    transform-style: preserve-3d;
}
.content-carrousel:hover{
    animation-play-state: paused;
    cursor: pointer;
}
.content-carrousel figure{
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: absolute;
    box-shadow: 0px 0px 20px 0px black;
    transition: all 300ms;
}

.content-carrousel figure:hover{
    box-shadow: 0px 0px 0px 0px black;
    transition: all 300ms;
}


.content-carrousel figure:nth-child(1){
    transform: rotateY(5deg)
    translateZ(300px);
}
.content-carrousel figure:nth-child(2){
    transform: rotateY(41deg)
    translateZ(300px);
}
.content-carrousel figure:nth-child(3){
    transform: rotateY(77deg)
    translateZ(300px);
}
.content-carrousel figure:nth-child(4){
    transform: rotateY(113deg)
    translateZ(300px);
}
.content-carrousel figure:nth-child(5){
    transform: rotateY(149deg)
    translateZ(300px);
}
.content-carrousel figure:nth-child(6){
    transform: rotateY(185deg)
    translateZ(300px);
}
.content-carrousel figure:nth-child(7){
    transform: rotateY(221deg)
    translateZ(300px);
}
.content-carrousel figure:nth-child(8){
    transform: rotateY(257deg)
    translateZ(300px);
}
.content-carrousel figure:nth-child(9){
    transform: rotateY(293deg)
    translateZ(300px);
}
.content-carrousel figure:nth-child(10){
    transform: rotateY(329deg)
    translateZ(300px);
}

.content-carrousel img{
    width: 100%;
    transition: all 300ms;
}

.content-carrousel img:hover{
    transform: scale(1.2);
    transition: all 300ms;
}

@keyframes rotar {
    from{
        transform: rotateY(0deg);
    }to{
        transform: rotateY(360deg);
    }
    
}