/* Reset */
*{
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* Generales ----------------------------------------
-------------------------------------------------- */

p {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	margin-bottom: 30px;
}

b {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
}

a {
	color: #ed1c24;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


/* Particulares -------------------------------------
-------------------------------------------------- */
.intro {
	max-width: 800px;
	margin: 90px;
	margin-top: 40px;
	margin-left: 180px;
	margin-bottom: 40px;
}

.contenido {
	max-width: 1000px;
	margin: 80px;
}

.quote {
	max-width: 600px;
	margin: 50px;
	margin-left: 150px;
}

.quote > p {
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	line-height: 1.3;
}

.quote > .cita {
	text-align: right;
	font-weight: normal;
	font-size: 14px;
	font-family: 'Open sans', sans-serif;
	text-transform: none;
	color: #999;
}

.anotaciones {
	background-color: #eaeaea;
	padding: 20px;
	max-width: 800px;
	margin-left: 150px;
}

.anotaciones > p {
	font-size: 10px;
	font-family: 'Open sans', sans-serif;
	color: #999;
}

/* media queries ------------------------------------
-------------------------------------------------- */

@media screen and (max-width: 1000px){
	.intro {
		max-width: 800px;
		margin: 200px;
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.contenido {
		max-width: 800px;
		margin: 80px;
		margin-top: 50px;
	}
	.quote {
		max-width: 600px;
		margin: 100px;
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.anotaciones {
		background-color: #eaeaea;
		padding: 20px;
		max-width: 800px;
		margin-left: 80px;
	}
}

@media screen and (max-width: 650px){
	.intro {
		max-width: 300px;
		margin: 50px;
		margin-top: 20px;
	}
	.contenido {
		max-width: 600px;
		margin: 30px;
		margin-top: 20px;
	}
	.quote {
		max-width: 400px;
		margin: 10px;
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.quote > p {
		font-size: 20px;
		line-height: 1.3;
	}
	.anotaciones {
		max-width: 400px;
		margin: 30px;
	}
}