@charset "UTF-8";

/*--ZERO OUT--*/
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, container, heading, sub,controls {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

h1 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 50px;
}

h2 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	font-size: 20px;
}

h1 i{
	font-style: italic;
}

body {
	background: #535353;
	font-family: 'Playfair Display', serif;
	font-weight: 400;
}


#container {
/*	border: 2px solid rgba(168,213,169,1.00);*/
	display: grid;
	background: #EBEBEB;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 80px 30px 810px 60px;
	grid-template-areas:
		"head head head"
		"sub sub sub"
		"slide slide slide"
		"controls controls controls";
	gap: 10px;
	margin: 0 auto;
	width: 900px;
	height: auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}
#heading {
/*	border: 2px solid rgba(168,213,169,1.00);*/
	display: grid;
	grid-area: head;
	color: #EFEFEF;
	text-align: center;
	background: #323232;

}

#sub {
/*	border: 2px solid rgba(168,213,169,1.00);*/
	display: grid;
	grid-area: sub;
	text-align: center;
	margin: 0 auto;
	justify-content: center;
	align-content: center;

}


#slideshow {
/*	border: 2px solid rgba(168,213,169,1.00);*/
	display: grid;
	grid-area: slide;
	margin: 0 auto;
	width: 800px;
	height: 800px;
	position: relative;
	cursor: pointer;

}

#slideshow > div {
	position: absolute;
}

#controls {
/*	border: 2px solid rgba(168,213,169,1.00);*/
	display:inline-grid;
	grid-area: controls;
	text-align: center;
	margin: 0 auto;
	justify-content: center;
	align-content: center;
	margin-top: -10px;
}

#controls a {

	text-decoration: none;
/*	background: url("../images/pause.png");*/
	background-repeat: no-repeat;
	width: 45px;
	height: 45px;
	margin: 0 auto;
	
}
#controls a:hover, #controls a:focus{
	color: black;
}
