*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        :root {--letra: #140115; --fondo: #7ef144; --fondoSobre: #FDFBF1; --menuOscuro: #193a05; --menuClaro: #e5e551;}
        :root {--letra: #140115; --fondo: #7ef144; --fondoSobre: #FDFBF1; --menuOscuro: #193a05; --menuClaro: #e5e551;}
header  {display:inline-flexbox;position:  relative; top: 0px; left: 0px; width: 100%; text-align: center;border-color: #140115; background-color:rgba(77, 197, 0.7);}
.logo {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    animation-name:logoarando;
    animation-duration: 10s;
    animation-delay: 1s;
    position: relative;
    animation-direction: alternate-reverse;
    /*animation-timing-function: ease;*/
    animation-iteration-count: infinite;
    animation-play-state: running;
}
@keyframes logoarando {
    0% {left: 100px;top:0px;}
    10%{left: 200px;top:0px;}
    20%{left: 400px;top:0px;}
    30%{left: 500px;top:0px;}
    40%{left: 600px;top:0px;}
    50%{left: 700px;top:0px;}
    60%{left: 800px;top:0px;}
    70%{left: 900px;top:0px;}
    90%{left: 200px;top:0px;}
    150%{left: 500px;top:0px;}
    250%{left: 800px;top:0px;}
    300%{left: 900px;top:0px;}

}

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

h2{
    text-align: center;
    font-size: 40px;
    font-family: arial;
    margin-top: 20px;
    color: rgb(255,255,255);
    text-shadow: 0px 0px 6px greenyellow;
}

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

.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(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 300ms;
}

.content-carrousel img:hover{
    transform: scale(1.2);
    transition: all 300ms;
}
.boton-intro {
    position: relative;
    display: inline-flexbox;
    text-align: center;
    padding: 15px 20px;
    border: 10px solid  rgba(231, 199, 42, 0.666) ;
    border-radius: 30px;
    color:red;
    font: 2em sans-serif; 
    background-color:rgba(240, 242,235, 0.3);
    text-decoration: seashell;
    font-size: 20px;
    text-transform: uppercase;
    text-shadow: 0 -1px 4px #fff, 2px 2px 10px #ff0, 2px -2px 20px #ff8000; 
    transition: 0.5s ease;
    animation: naranja-neon 2s infinite alternate;

}
.boton-intro:hover {
	text-shadow: none;
	border: 6px rgb(0, 128, 117) rgba(255,255,255,.8);
}  
@keyframes naranja-neon {
	0%, 10%, 15%, 20%, 30%, 35%, 40%, 50%, 55%, 60%, 70%, 75%, 80%, 85%, 90%, 100% {
		text-shadow: 0 -1px 4px #fff, 
					 0 -2px 10px #ff0,
					 0 -10px 20px #ff8000;
	}

	10%, 15%, 60% {
		text-shadow:rgb(122, 233, 255);
	}
} 


@keyframes rotar{
    from{
        transform: rotateY(0deg);
    }to{
        transform: rotateY(360deg);
    }
}
/* CSS para la animación y localización de los DIV de cookies *//*
 
@keyframes desaparecer
{
0%		{bottom: 0px;}
80%		{bottom: 0px;}
100%		{bottom: -50px;}
}
 
@-webkit-keyframes desaparecer /* Safari and Chrome */ /*
{
0%		{bottom: 0px;}
80%		{bottom: 0px;}
100%		{bottom: -50px;}
}
 
@keyframes aparecer
{
0%		{bottom: -38px;}
10%		{bottom: 0px;}
90%		{bottom: 0px;}
100%		{bottom: -38px;}
}
 
@-webkit-keyframes aparecer /* Safari and Chrome *//*
{
0%		{bottom: -38px;}
10%		{bottom: 0px;}
90%		{bottom: 0px;}
100%		{bottom: -38px;}
}
#cookiesms1:target {
    display: absolute;
    flood-color: rgba(188, 124, 60, 0.923);
    font-weight: 300;
}
.cookiesms{	
	width:100%;
	height:43px;
	margin:0 auto;
	padding-left:1%;
        padding-top:5px;
        font-size: 3em;
	clear:both;
        font: weight 300px;;
color: rgba(51, 51, 51, 0.868);
bottom:0px;
position:relative;
flood-color: #ff0;
left: 0px;
background-color: #ffffffbf;
opacity:0.9;
filter:alpha(opacity=70); /* For IE8 and earlier *//*
transition: bottom 1s;
-webkit-transition:bottom 1s; /* Safari */ /*
-webkit-box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
-moz-box-shadow:    3px -3px 1px rgba(50, 50, 50, 0.56);
box-shadow:         3px -3px 1px rgba(50, 50, 50, 0.56);
z-index:999999999;
}
 
.cookiesms:hover{
bottom:0px;
}
.cookies2{
background-color: #FFF;
display:inline-table;
opacity:0.95;
filter:alpha(opacity=95);
position:absolute; 
left:1%; 
top:-30px;
font-size:15px;
height:30px;
padding-left:25px;
padding-right:25px;
-webkit-border-top-right-radius: 15px;
-webkit-border-top-left-radius: 15px;
-moz-border-radius-topright: 15px;
-moz-border-radius-topleft: 15px;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
-webkit-box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
-moz-box-shadow:    3px -3px 1px rgba(50, 50, 50, 0.56);
box-shadow:         3px -3px 1px rgba(50, 50, 50, 0.56);
} */
 
/* Fin del CSS para cookies */












