*{
	padding: 0;
	margin: 0;
	font-family: sans-serif;
}
p{
	margin-top: 10px;
	font-size: 13px;
	text-align: justify;
}
.containerBook, .book-content{
	display: flex;
	justify-content: center;
	align-items: center;
}


/* 
.container{
	display: flex;
}

.containerBook{
	width: 100%;
	height: 100vh;
	background: #22051e;
}
*/
.book-content{
	width: 100%;
	min-width: 400px;
	max-width: 530px;
	height: 500px;
	position: relative;
	perspective: 1000px;
	transition: 1s;
}
.book{
	position: absolute;
	width: 65%;
	height: 100%;
	transition: 1s;
	transform-style: preserve-3d;
	transform-origin: left; 
}
.face-front, .face-back{
	width: 100%;
	height: 100%;
	background: white;
	padding: 15px;
	box-sizing: border-box;
	overflow: hidden;
}
.face-front{
	box-shadow: inset 3px 0px 20px -7px black;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.face-back{
	position: absolute;
	top: 0;
	left: 0;
	transform: translateZ(-1px) rotateY(180deg);
	box-shadow: inset -3px 1px 20px -7px black;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
#portada{
	background: url('../img/bookPortada.jpg');
	align-items: right;
}
#portada-back{
	background: url('../img/portadaBack.jpg');
	align-items: right;
}
#portada, #portada-back{
	background-size: 100% 100%;
}

/* Clases que se agregaran con Javascript */

.trnsf{
	transform: translateX(80px);
}
.trnsf-reset{
	transform: translateX(0px);
}

/* @media para hacer el texto responsivo */
/*
@media screen and (max-width: 800px){
	p{
		font-size: 12px;
	}
}
*/


