.container-card{
	width: 100%;
	display: flex;
	max-width: 1100px;
	margin: auto;
	background-color: #e9d196;
	border-radius: 20px;
}
.title-cards{
	width: 100%;
	max-width: 1080px;
	margin: auto;
	padding: 10px;
	margin-top: 10px;
	text-align: center;
	color: #574f4f;
	font-family: 'Just Another Hand', cursive;
	font-size: 50px;
}
.card{
	width: 100%;
	margin: 20px;
	border-radius: 6px;
	overflow: hidden;
	background-color: #f0c65c;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
	transition: all 400ms ease-out;
	cursor: default;
	border-radius: 20px;
	font-weight: 800;
	
}
.card:hover{
	box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
	transform: translateY(-3%);
}
.card img{
	width: 100%;
	height: 210px;
	border-radius: 20px;
}
.card .contenido-card{
	padding: 15px;
	text-align: center;
}
.card .contenido-card h3{
	margin-bottom: 15px;
	color: #0f0c0c;
    font-family: 'Permanent Marker', cursive;
font-weight: 700;
}
.card .contenido-card p{
	line-height: 1.8;
	color: #0f0c0c;
	font-size: 14px;
	margin-bottom: 5px;
}
.card .contenido-card a{
	display: inline-block;
	padding: 10px;
	margin-top: 10px;
	text-decoration: none;
	color: #6e7c7c;
	border: 2px solid #2fcc5e;
	border-radius: 20px;
	/*transition: all 400ms ease;*/
	margin-bottom: 5px;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
	transition: all 400ms ease-out;

}
.card .contenido-card a:hover{
	background: #bfdb09;
	color: rgb(11, 68, 114);
	box-shadow: 5px 5px 20px rgba(0,0,0,0.6);

}
@media only screen and (min-width:320px) and (max-width:768px){
	.container-card{
		flex-wrap: wrap;
	}
	.card{
		margin: 15px;
	}
}