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

/* .container{
	width: 100%;
	height: 100vh;
	background: #2d6f75;
} */
.book-content {
	margin-left: 100px;
	width: 65%;
	min-width: 250px;
	max-width: 400px;
	height: 330px;
	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('assets/images/novel/logo1.png');
}

#portada-back {
	background: url('');
}

#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;
	}
}