html, body{
	margin: 0;
	padding: 0;
}
body{
	width: 100%;
	height: 100%;
	font-family: sans-serif;
	box-sizing: border-box;
	
}
.titulo{
	width: 100%;
	height: 150px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	display: block;
}
.contenedor{

	width: 100%;
	max-width: 1200px;
	height: 450px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto;

}
.contenedor .card{
		
	width: 250px;
	height: 380px;
	border-radius: 3px;	
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	margin: 10px 5px 10px 5px;
	padding: 1px;
	text-align: center;
	transition: all .25s;
	background: rgba(69, 170, 242,0.5);
}

.contenedor .card:hover {
	transform: translateY(-5px);
	box-shadow:  0 12px 16px rgba(0, 0, 0, 0.2);
}

.contenedor .card img{

	width:250px;
	height: 180px;
	
}

.contenedor .card h4{
	font-weight: bold;
	margin: 4px;
}

.contenedor .card p{
	margin: 10px;
	padding: 5px;
	text-align: justify;
}


.contenedor .card a{
	text-decoration: none;
	border-radius: 5px;
	border: 2px solid #fff;
	padding: 10px;
	font-weight: bold;
}

.contenedor .card a:hover{
	transform: scale(1.3);
	box-shadow:  0 12px 16px rgba(0, 0, 0, 0.2);
}

a{
	text-decoration: none;
	border-radius: 5px;
	border: 2px solid #0016b0;
	padding: 10px;

}

a:hover{
	
	box-shadow:  0 12px 16px rgba(0, 0, 0, 0.2);
}


@media (max-width: 650px){
	.titulo{

		  display: flex;
		 flex-direction: column;
		height: 300px;

		}
	


}