*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #c0c0c0;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
}

.container{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content{
    position: fixed;
    top: 18%;
    left: 28%;
    width: 220px;
    align-items: center;
    text-align: center;
}

.content-all{
    width: 210px;
    margin: auto;
    perspective: 800px;
    position: relative;
    margin-top: 200px;
}

.content-carrousel{
    width: 100%;
    position: absolute;
    animation: rotar 50s infinite linear;
    transform-style: preserve-3d;
    animation-play-state: running;
}

.content-carrousel:hover{
    animation-play-state: paused;
    cursor: pointer;
}

.content-carrousel figure{
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: absolute;
    text-align: center;
    box-shadow: 0px 0px 5px 0px black;
    transition: all 240ms;
    
}

.content-carrousel figure:hover{
    box-shadow: 0px 0px 0px 0px black;
    transition: all 300ms;
}

.content-carrousel figure:nth-child(1){transform: rotateY(0deg) translateZ(300px);}
.content-carrousel figure:nth-child(2){transform: rotateY(40deg) translateZ(300px);}
.content-carrousel figure:nth-child(3){transform: rotateY(80deg) translateZ(300px);}
.content-carrousel figure:nth-child(4){transform: rotateY(120deg) translateZ(300px);}
.content-carrousel figure:nth-child(5){transform: rotateY(160deg) translateZ(300px);}
.content-carrousel figure:nth-child(6){transform: rotateY(200deg) translateZ(300px);}
.content-carrousel figure:nth-child(7){transform: rotateY(240deg) translateZ(300px);}
.content-carrousel figure:nth-child(8){transform: rotateY(280deg) translateZ(300px);}
.content-carrousel figure:nth-child(9){transform: rotateY(320deg) translateZ(300px);}
.content-carrousel figure:nth-child(10){transform: rotateY(360deg) translateZ(300px);}

.content-carrousel img{
    width: 100%;
    transition: all 800ms;
}

.content-carrousel img:hover{
    transform: scale(1.3);
    transition: all 300ms;
}

a:link 		{color: gold; font-weight:900;} 
a:visited 	{color: white; font-weight:900;} 

@keyframes rotar{
    from{
        transform: rotateY(0deg);
    }to{
        transform: rotateY(360deg);
    }
}

.background-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
    z-index: -2;
}

.fijo{
    position: fixed;
    top: 8%;
    left: 45%;
    height: 60%;
    text-align: center;
    z-index: 20;
}

.menu{
    position: fixed;
    top: 85%;
    left: 28%;
    height: 30%;
    text-align: center;
    z-index: 30;
}

.content h1{
	font-size:48px;
		font-style:italic;
		font-weight: bold;
	 	color:white;
    margin-top: 300px;
}

.content h4{
	font-size:24px;
           position: absolute;
 	   text-align: center;
		font-style:italic;
		font-weight: bold;
	 	color:gold;
    z-index: -5;
}

.h4{
	font-size:24px;
 	   text-align: center;
		font-style:italic;
		font-weight: bold;
	 	color:gold;
}

.h1{
	font-size:48px;
		font-style:italic;
		font-weight: bold;
	 	color:#CFB53B;
    margin-top: 300px;
}

.fijo h1{
    	text-align: center;
		font-size:32px;
		font-style:italic;
		font-weight: bold;
	 	color: gold;
}

.menu h1{
    	text-align: center;
		font-size:32px;
		font-style:italic;
		font-weight: bold;
	 	color: gold;
}

.h2{
    text-align: center;
    font-size: 40px;
    font-family: arial;
    margin-top: 40px;
    color: white;
    text-shadow: 0px 0px 0px black;
}

.content a{
    font-size: 20px;
    color: white;
    text-decoration: none;
    border: 4px solid #fff;
    padding: 15px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.dario		{font-size:16.0pt;
		font-style:italic;
		font-weight: bold;
	 	color: white}

.center 	{
          	margin: auto;
          	width: 100%;
       	  	padding: 4pt;
		    align-items: center;
	  	text-align:center;}

.center20 	{margin: auto;
        	vertical-align:middle;
        	width: 70px;
        	text-align:center;
        	padding: 2pt;}

@media (min-aspect-ratio:16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .background-clip{
        width: auto;
        height: 100%;
    }
}

@media screen and (max-width: 600pt) {
  		.xl25 {
    		font-size: 5vw;
  			 }
		}

