body {
	margin: 0;
	padding: 0;
	background-color: #ffe5b1;
	font-family: 'Lato', sans-serif;
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
}
header {
	margin-top: 40px;
}
img {
	width: 300px;
	height: auto;
}
nav a {
	margin: 0 10px;
	text-decoration: none;
	color: #fff;
	background-color: #be875a;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: bold;
	font-family: 'Libre Baskerville', serif;
}
nav a:hover {
	background-color: #583a27;
}
h1 {
	font-family: 'Libre Baskerville', serif;
	margin-top: 80px;
}
.separador {
	width: 90%;
	max-width: 600px;
	margin: 0;
	text-align: center;
}
.separador img {
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}
section {
	width: 90%;
	max-width: 600px;
	margin: 20px 0 40px;
	text-align: center;
}
section h2 {
	font-family: 'Libre Baskerville', serif;
}
section a {
	display: block;
	margin: 10px 0;
	color: #be875a;
	text-decoration: none;
}
section a:hover {
	color: #583a27;
}

/* Tirada */

button {
	margin: 0 10px;
	text-decoration: none;
	color: #fff;
	background-color: #be875a;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: bold;
	font-family: 'Libre Baskerville', serif;
	border: none;
	cursor: pointer;
	font-size: 1.2em;
}
button:hover {
	background-color: #583a27;
	border: none;
}

.cards {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1rem;
}

.card-container {
	width: 160px;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.card-label {
	font-family: 'Libre Baskerville', serif;
	font-weight: bold;
	margin-bottom: 0.3rem;
}

.card {
	width: 160px;
	height: 260px;
	background-color: white;
	border: 2px solid black;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	transform-style: preserve-3d;
	animation: flipIn 1s ease forwards;
	position: relative;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: rotate(0deg);
}

.card.invertida img {
	transform: rotate(180deg);
}

.card-desc {
	margin-top: 0.4rem;
	font-size: 0.9rem;
	max-width: 160px;
}

@keyframes flipIn {
	from {
		transform: rotateY(90deg);
		opacity: 0;
	}
	to {
		transform: rotateY(0deg);
		opacity: 1;
	}
}