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;
}

/* */
body {
    background-image: url(Images/AmongUs.jpg);
    background-size: 1600px;
    background-position: center;
}

main {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 100px 300px 3fr 50px;
}

img {
    width: 100%;
    height: 300px;
}

article {
    border: 1px solid black;
    padding: 5px;
    background-color: azure;
}

h1 {
    grid-column: 1/5;
    grid-row: 1/2;
    text-align: center;
    line-height: 100px;
    font-size: 30px;
    background-color: azure;
}

#Hero {
    grid-column: 1/5;
    grid-row: 2/3;
    padding: 0;
    background-color: rgba(206, 220, 220, 0.2);
}

#won {
    grid-column: 1/2;
    grid-row: 3/4;
}

#too {
    grid-column: 2/3;
    grid-row: 3/4;
}

#tree {
    grid-column: 3/4;
    grid-row: 3/4;
}

#foe {
    grid-column: 4/5;
    grid-row: 3/4;
}

footer {
    grid-column: 1/5;
    grid-row: 4/5;
    text-align: center;
    line-height: 50px;
    background-color: rgb(220, 244, 252);
    font-size: 20px;
}