.container{
    background-color: black;
}

ul{
    padding:15px;
    border:1px solid white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    gap: 100px;

}
ul li{
    list-style: none;
}
ul li a{
    font-size: 20px;
    font-weight: 1000;
    text-decoration: none;
    text-transform: uppercase;
    color:white;
    padding: 15px;
    transition: 0.5 ease;
}
ul:hover{
    border:1px solid #f46b30;

}
ul:hover li a {
    color:#f46b30;
   
}
ul:hover li a:not(:hover){
    color:white;
    opacity:0.3;
} 
.titulo{
    text-align: center;

} 
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url(../image/fondo.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 330vh;
}

h2{
    text-align: center;
    font-size: 40px;
    font-family: arial;
    margin-top: 80px;
    color: aqua;
    text-shadow: 0px 0px 6px black;
}

.content-all{
    width: 210px;
    margin: auto;
    perspective: 800px;
    position: relative;
    margin-top: 150px;
}

.content-carrousel{
    width: 100%;
    position: absolute;
    animation: rotar 10s infinite linear;
    transform-style: preserve-3d;
}

.content-carrousel:hover{
    animation-play-state: paused;
    cursor: pointer;
}


.content-carrousel figure{
    width: 100%;
    height: 120px;
    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(0deg) translateZ(500px);}
.content-carrousel figure:nth-child(2){transform: rotateY(40deg) translateZ(500px);}
.content-carrousel figure:nth-child(3){transform: rotateY(80deg) translateZ(500px);}
.content-carrousel figure:nth-child(4){transform: rotateY(120deg) translateZ(500px);}
.content-carrousel figure:nth-child(5){transform: rotateY(160deg) translateZ(500px);}
.content-carrousel figure:nth-child(6){transform: rotateY(200deg) translateZ(500px);}
.content-carrousel figure:nth-child(7){transform: rotateY(240deg) translateZ(500px);}
.content-carrousel figure:nth-child(8){transform: rotateY(280deg) translateZ(500px);}
.content-carrousel figure:nth-child(9){transform: rotateY(320deg) translateZ(500px);}
.content-carrousel figure:nth-child(10){transform: rotateY(360deg) translateZ(500px);}

.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(200deg);
    }
}
.flex-wrap{
    position: fixed;
    bottom: 0;
    width: 100%;
    align-self: flex-end;
}
.col-12{
    color:yellow
}

   


