/* 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;
}
/* End of reset */

/* CSS Layout challenge: see image for details.
The layout is based on a 4-column grid:
Fixed width page = 960px
Column width = 190px
Grid gap (gutter) = 40px
*/

/* ======= LAYOUT ======= */
* {
	box-sizing: border-box; /* optional but recommended */
}


#content{

	width: 960px;
	margin: 30px auto;
	padding: 40px;
	display: flow-root;
}



main{

	width: 650px;
	float: left;
}


aside{

	width: 190px;
	float: right;
	margin-top: 102px;
}





/* Add your layout rules above. Do NOT edit anything below this line */

/* ======= TYPOGRAPHY & COLOUR ======= */
body {
	font-family: "Lato", Verdana, Geneva, sans-serif;
	color: #1a1a1a;
	background-color: #ba400f;
}
#content {
	background-color: #fff7f4;
	box-shadow: 0px 0px 7px 3px rgba(0,0,0,0.25);
}
h1, h2 {
	font-family: "Crete Round", Georgia, "Times New Roman", Times, serif;
	color: #333;
}
h1 {
	font-size: 3.0em;
	margin-top: 10px;
}
h2 {
	font-size: 1.6em;
	padding-bottom: 5px;
	border-bottom: 3px solid #bbb;
	margin-top: 65px;
}
p {
	line-height: 1.55;
	margin-top: 25px;
}
main p {
	text-align: justify;
}
aside p {
	font-size: 0.8em;
}
h1 + p {
	font-size: 1.4em;
	margin-top: 10px;
}
h2 + p {
	margin-top: 15px;
}
h2 + p::first-line {
	font-size: 1.3em;
}
.author {
	font-size: 1.15em;
	display: block;
}
.date {
	font-size: 0.85em;
	color: #882f0b;
	display: block;
}
aside p:last-of-type {
	font-style: italic;
	color: #882f0b;
}

/* ======= IMAGES ======= */
img {
	width: 190px;
	height: auto;
	padding: 3px;
	border: 1px solid #bbb;
	border-radius: 18px;	
}
main img {
	float: left;
	margin: 9px 25px 10px 0;
}
aside img {
	margin: 9px 0 15px;
}
