/* 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, p, 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, p, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    max-width: 900px;
    margin: 0 auto;
	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*/

/* MY STYLE RULES */

* {
    box-sizing: border-box;
}
/* border-box tells the browser to account for any border and padding in the values you specify for an element's width and height.*/

body {
    max-width: 1050px;
    margin: 0 auto;
    background-color: #c1e1c1;
    color: #000000;
    font-family: 'Ysabeau','Montserrat', sans-serif;
    line-height: 1.5em;
    font-size: 1.5em;
    padding: 1.5em;
    text-align: left;
    margin-top: 0;
    margin-bottom: 1em;
}

header {
    margin-bottom: 1.5em;
    font-style: oblique;
}
header a {
    color: #000000;
}

header a:hover {
    color: #b8860b;
}


h1 {
    font-family: 'Playfair Display', Georgia, Garamond, serif;
    color: #006400;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 0.2em;
    text-align: left;
    margin-top: 0.2em;
    margin-bottom: 1em;
}

h1, p {
    max-width: 35em;
}


h2 {
    font-family: 'Playfair Display', Georgia, Garamond, serif;
    color: #b8860b;
    margin-top: 1em;
}

p {
    max-width: 1050px;
    margin: 0 auto;
    font-size: 1.0em;
    line-height: 1.35em;
    background-color: #ffffff59;
    padding-left: 1.0em;
    padding-right: 1.0em;
    margin-top: 1em;
    margin-bottom: 1em;
}

p + p {
    padding-top: 1.0em;
}

ul li {
    list-style: inside;
    line-height: 1.3;
    margin-bottom: 1em;
    margin-top: 1em;
    max-width: 40em;
}

ul li a {
    font-size: 1.05em;
    text-decoration: none;
    color: #b8860b;
}

li :hover {
    color: #ffc123;
}

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

nav a:hover{
    color: #00aa00;
}

img {
    border-radius: 1em;
}

footer{
    margin-top: 1.2em;
    background-color: #006400;
    color: #ffffff;
    padding: 1.2em;
}
