@charset "UTF-8";
/* COMPLEXUS */
body {

}
.storyteller {
	height: 250px;
	width: 250px;
	background-image:url("../IMG/iconos/3.gif");
	background-size:contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: auto;
}
h1 {
	text-align: center;
	font-size: 2em;
}
h2 {
	text-align: center;
	font-size: 1.5em;
}
.texto1 {
	column-count: 2;
    column-gap: 30px;
    column-rule: 1px solid;
	padding: 20px;
}
.mapa {
	position:relative;
	left: 50px;
	margin: auto;
	width: 90%;
	height: 600px;
}

.tarjetero {
                display: grid;
                grid-template-columns: repeat(4, auto); 
                grid-auto-rows: 200px;
                grid-gap: 5px;
            }

.tarjetero div{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;

}

.contenedor-tarjeta {
            position:relative;
            width: 90%;
            height: 300px;;
        }

.tarjeta {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	cursor: pointer;
}
.anverso {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	background:#00c8fa;
	color:#191970;
	transition: all 0.5s ease;
	text-align: center;
	border-radius: 20px;
}
.anverso {
	transform: perspective(500px) rotateY(0deg); 
}
.reverso {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	background:#191970;
	color:white;
	transition: all 0.5s ease;
	text-align: center;
	border-radius: 20px;
	font-size: 0.8rem;

}
.reverso {
	transform: perspective(500px) rotateY(180deg); 
}
.tarjeta:hover > .anverso{
	transform: perspective(500px) rotateY(-180deg);
}
.tarjeta:hover > .reverso{
	transform: perspective(500px) rotateY(0deg);
}