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

header {
	position: relative;
}
 
body {
	background:url(bg1.jpg); /* Nuestra imagen de fondo */
	background-repeat:no-repeat; /* Indicamos que no se repetira */
	background-size:cover; /* Encajamos la imagen al 100% del ancho */
	background-position:0, 0;
	background-attachment: fixed; /* Establecemos una posicion fija para la imagen */
 
	font-family:helvetica, arial, sans-serif;
	line-height:20px;
}
 
.contenedor1 {
	width: 90%;
	max-width:900px;
	margin:auto;
}
 
article {
	background:rgba(0,0,0,.4);
	padding:20px;
	margin:20px 0;
	color:#00FFFF;
	box-shadow:0 5px 5px 3px rgba(0, 0, 0, 0.25);
}
 titulo
article h2 {
	color:#FE9A2E;
}
 
 color de la linea
article hr {
	background:#2E64FE;
	height:5px;
	border:none;
}
 
article p {
	line-height: 25px;
}
 
article h2, article p, article hr {
	margin-bottom: 20px;
}