@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url(menu.css);
@import url(banner.css);
@import url(articulos.css);
@import url(deportes.css);
@import url(formulario.css);

*{
	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: 95%;
	margin: auto;
}

h1 {
	float: left;
	font-size: 25px;
}

header .contenedor {
	display: table;
}

section {
	width: 100%;
}

#bienvenida {
	text-align: center;
}



footer .contenedor {
	width: 100%;
	background-color: #ddd;
	margin: 0px;
	text-align: center;
	padding-bottom: 25px;
	padding-top: 10px;
}

footer .copy {
	font-size: 15px;
}

.alto {
	height: 400px;
}

#servicios table td {
	border-bottom: 1px solid #ddd;
	padding-bottom: 4px;
	padding-top: 7px;
	padding-left: 8px;
}

#servicios tr:nth-child(even){
	background-color: #f5f5f5;
}

#servicios .contenedor{
	font-size: 11px;
}

@media (min-width:480px) {
	header h1 {
		font-size: 32px;
	}
	
	#servicios .contenedor{
		font-size: 14px;
	}
}


