	
	
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
}

body {
	font-family: 'Open Sans', sans-serif,
}
header{
	width: 100%;
	height: 50px;
	background: #333;
	color: #fff;
	
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.contenedor{
	width: 100%;
	margin: auto;
	
}
h1{
	float: left;
}

header .contenedor{
	display: table;
}
#bienvenidos{
	text-align: center;
}

#bienvenidos p{
	margin-left: 50px;
	margin-right: 50px;
	text-align: justify;
}

@media (min-width:1024px){
	.contenedor{
		width: 980px;
	}
}

/*contenedor blog*/

#blog article{
	margin: 15px;
}
#blog .contenedor{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#blog img{
	width: 100%;
	max-width: 280px;
}

#blog h3, h4{
	text-align: center;
}

/*info estilos */

#info {
	background: #333;
	color: #fff;
	text-align: center;
	margin-top: 30px;
	
}



#info .contenedor{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
}

.info_mas{
	margin: 20px;
}

.info_mas img{
	width: 180px;
	height: 180px;
	border-radius: 50%;
	border: 7px solid #fff;
	
}
/*footer sección*/

footer .contenedor{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.copy{
	font-size: 20px;
	margin-top: 20px;
}
.social{
	width: 100%;
	text-align: center;
	font-size: 28px;
	margin-top: 10px;
	margin-bottom: 20px;
}
.social a{
	color: #333;
	text-decoration: none;
	
}

@media (min-width:768px){
	.social{
		width: auto;
	}
	
	footer .contenedor{
		justify-content: space-between;
	}
}
