/* 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 {

}
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: Arial, sans-serif;
	background-image: url(images/warsaw.jpg);
	background-color: #0B611C;
	background-size: cover;
	background-attachment: fixed;

}


body {
	max-width: 80%;
	margin: 0 auto;
	background-color: #2F5904;
	padding: 1rem 1rem 1rem 1rem;

}


h1 {
	font-weight: bold;
	font-size: 2rem;
	text-align: center;

}

.subtitle {
	text-align: center;
	margin-bottom: 1rem;
}


img {
	display: block;
	max-width: 60%;
	margin: 0 auto;

}

figure {
	margin-bottom: 1rem;

}

figcaption {
	text-align: center;

}

.container {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-gap: 1rem;
}

/*.container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	column-gap: 1rem;
}*/


h1, .subtitle, figcaption, footer {
	color: #F2F2F2;
}

section {
	background-color: lightgray;
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: 3px;
	max-width: 500px;

}


h2 {
	font-size: 1.6rem;
	font-style: italic;

}


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

a:hover {
	text-decoration: underline;
}

a:before:after {
	text-decoration-color: lightgreen;
}






















