/* 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 reset ======================*/

/*value units - 0, 25px, 50%, 1em, 1rem*/
html {
	font-size: 16px;
	line-height: 1.5;
	font-family: Times New Roman;
	background-color: #aa252d;
	background-image: url(images/roses.png);
	background-size: cover;
	/*background-color: lightslategrey;*/
}

body {
	/*border: 1px solid red;*/
   width: 550px;
   margin: 100px auto;
   padding: 20px;
	background-color: white;
}

h1 {
	font-weight: bold;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 0.5em;
	color: #black;
}

img {
	display: block;
	max width: 60%;
	margin: 0 auto;
}

figure {
	margin-bottom: 1rem;
}

figcaption {
	margin-top: 0.5rem;
	text-align: center;
	color: #black;
}

section {
	background-color: lightgrey;
	padding: 20px;
   margin: 20px auto;
}

h2 {
	font-size: 1.6rem;
	font-style: italic;
	margin-bottom: 1em;
	color: #black;
}

p {
	margin-bottom: 1em;
	color: #black;
	text-align: center;
}

ol {	
	margin-bottom: 1em;
	text-indent: 20px;
	color: #black;
}

li {	
	margin-bottom: 1em;
	text-indent: 20px;
	color: #black;
}

ul {	
	margin-bottom: 1em;
	text-indent: 20px;
	color: #black;
}