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

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

body {
	font-family: 'Open Sans', sans-serif;
	font: 11px;
}

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%;
	margin-bottom: 25px;
}

#bienvenida {
	text-align: center;
}

footer .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 25px;
}

footer .contenedor .copy {
	font-size: 15px;
	align-content: center;
}

@media (min-width:480px) {
	header h1 {
		font-size: 32px;
	}
}


