/* 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 ----------------------------------------
-------------------------------------------------- */
div {
	max-width: 400px;
	margin-left: 150px;
	margin-top: 30px;
	margin-bottom: 30px;
}

/* Particulares -------------------------------------
-------------------------------------------------- */
.frase {
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
	color: #000;
	text-align: center;
	line-height: 1.1;
}

.persona {
	margin-top: 30px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #999;
	text-align: right;
	text-transform: uppercase;
}

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

@media screen and (max-width: 400px){
	div {
	max-width: 300px;
	margin-left: 10px;
	margin-right: 10px;
	}
}