/*CSS DOCUMENT*/

html, body, div, 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;}

body {
	font-family: sans-serif;
	line-height: 1.4em;
	color: #222;
	background-color: #fafafa;
	box-sizing: border-box;
	}

div.container{
	display: flex;
	flex-wrap: wrap;
	max-width: 65em;
    margin: auto;
	position: relative;
	min-height: 100vh;
}

header{
	flex: 1 0 60em;

}

article{
	flex: 3 0 25em;
	margin: 1em 1em 1em 2em;
}

aside{
	flex: 1 0 15em;
}

section{
	background-color: rgb(230,230,230);
	padding: 1em;
	margin: 1em 1.5em 1em;
}

h1{
	font-weight: bold;
	font-size: 2.5em;
	margin: 2em .8em .25em;
}

h2{
	font-weight: bold;
	font-size: 1.5em;
	margin: 2em .2em 1.25em;
}

h3{
	font-weight: bold;
	font-size: 1.25em;
	margin: .5em .1em 0em;
}

p{
	margin: .25em .2em 1em;
	font-size: 1em;
}

strong{
	font-weight: bold;
}

a{
	text-decoration: none;
	color: black;
}

footer{
	position:relative;
	bottom: 0;
	width: 100%;
	border-top: solid rgb(220,220,220) .15em;
	margin: .3em 2em;
}

img {
	width: 100%;
	margin: 0em 0em .5em;
	}
