html, body{
	margin: 0;
	padding: 0;
}
body{
	width: 100%;
	height: 100%;
	letter-spacing: 0.03em;
	line-height: 1.6;	
}
.title{
	text-align: center;
	font-size: 45px;
	color: #3E065F;
	font-weight: 100;
	margin-top: 50px;
	font-family:serif;
}
.contenedor{
	width: 100%;
	justify-content: center;
	display: flex;
	margin: auto;
	max-width: 1200px;
	height: 550px;
	flex-wrap: wrap;
}
.contenedor .tarjeta{
	width: 250px;
	height: 500px;
	margin: 20px;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
	overflow: hidden;
	transition: all 0.20s;
}
.contenedor .tarjeta:hover{
	transform: translateY(-15px);
	box-shadow: 0 12px 16px rgba(0,0,0,0.3);
}
.contenedor .tarjeta img{
	width: 250px;
	height: 250px;
}
.contenedor .tarjeta h4{
	font-weight: 600;
	font-family:inherit;
}
.contenedor .tarjeta p{
	padding: 0 1rem;
	font-size: 15px;
	font-weight: 300;
	font-family: cursive;
	font-style: italic;
}
.contenedor .tarjeta a{
	font-weight: 500;
	text-decoration: none;
	color: #3498db;
}
footer{
	padding: 2px;
	display:flex;
}
.footer-x{
	color: black;
	font-weight:bolder;
	font-size: 15px;
	width:auto;
	font-style:italic;
	text-align: center;
	margin:25px;
}