/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Custom css
*/

body, p {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
}

.container {
	width: 100%;
	height: 100%;
}

.top-container {
	position: absolute;
	background-color: #ffffff;
	display: block;
	top: 0;
	width: 100%;
	height: 50%;
}

.content {
    left: 50%;
    margin: 0 -150px;
    position: absolute;
    width: 300px;
	height: 100%;
}

.content > img {
	position: absolute;
	bottom: 5%;
}

.bottom-container {
	position: absolute;
	background-color: #231f20;
	display: block;
	bottom: 0;
	width: 100%;
	height: 50%;
}

.top-text {
	position: absolute;
	top: 5%;
	color: #e3e3e3;
}

.bottom-text {
	position: absolute;
	bottom: 3%;
	color: #6c6a6a;
}

h1 {
	font-size: 1.5em;
	font-style: italic;
	margin-bottom: 1em;
}

p > strong {
	font-weight: bold;
}

p > em {
	font-style: italic;
}

@media screen and (max-width: 320px) {
	
	.content {
		width: 89%;
		height: 90%;
		padding: 5%;
	}

	.content > img {
		bottom: 8%;
	}

}
	
@media screen and (max-width: 780px) {

	.top-container {
		height: 40%;
	}
	
	.bottom-container {
		height: 60%;
	}
	
}
