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;
}

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;
}

a:link, a:visited, a:hover {
    text-decoration: none;
    color: black;
}

main {
	display: grid;
	min-height: 100vh;
	grid-template-columns: 1fr 2fr 2fr 2fr 2fr 1fr;
	grid-template-rows: 1fr 3.5fr 10fr 1fr;
}

header {
	grid-row: 1/2;
	grid-column: 3/5;
	width: 100%;
	font-family: 'Aclonica', sans-serif;
	font-size: 35px;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

p {
	font-family: 'ABeeZee', sans-serif;
}

#heroPic {
	grid-row: 2/3;
	grid-column: 1/7;
	text-align: center;
	background-image: url('./images/heroPic.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 -150px;
}

section {
	line-height: 2em;
	font-size: 20px;
	padding: 0 10px;
}

#duelist {
	grid-row: 3/4;
	grid-column: 2/3;
}

#initiator {
	grid-row: 3/4;
	grid-column: 3/4;
}

#controller {
	grid-row: 3/4;
	grid-column: 4/5;
}

#sentinel {
	grid-row: 3/4;
	grid-column: 5/6;
}

footer {
	grid-row: 4/5;
	grid-column: 1/7;
	font-family: 'ABeeZee';
	font-style: italic;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-top: 2px #000000 solid;
	background-color: #2f4f4f;
	color: #ffffff;
}