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;
}

main{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-template-rows:100px 1fr 500px 100px;
    margin:auto;
    background-image: url(images/testsite.jpg);
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.gridtitle{
    grid-column:1/5;
    grid-row:1/2;
    font-family: 'Quicksand', sans-serif;
    font-size:60px;
    text-align:center;
    padding:20px;
    color:white;
    background-color:rgba(0, 0, 0, 0.5);
    width:400px;
    margin:auto;
    border-radius:10px;
}

.gridheroimg{
    grid-column:1/5;
    grid-row:2/3;
    text-align:center;
    padding:20px;
}

#heroimg{
    width:99%;
}

.p1{
    grid-column:1/2;
    grid-row:3/4;
    font-family: 'Dosis', sans-serif;
    color:white;
    font-size:30px;
    margin-left:20px;
    background-color:rgba(0,0,0,.5);
    padding:20px;
}

.p2{
    grid-column:2/3;
    grid-row:3/4;
    font-family: 'Dosis', sans-serif;
    color:white;
    font-size:30px;
    margin:0px 10px;
    background-color:rgba(0,0,0,.5);
    padding:20px;
}

.p3{
    grid-column:3/4;
    grid-row:3/4;
    font-family: 'Dosis', sans-serif;
    color:white;
    font-size:30px;
    margin-right:10px;
    background-color:rgba(0,0,0,.5);
    padding:20px;
}

.p4{
    grid-column:4/5;
    grid-row:3/4;
    font-family: 'Dosis', sans-serif;
    color:white;
    font-size:30px;
    margin-right:20px;
    background-color:rgba(0,0,0,.5);
    padding:20px;
}

.foot{
    grid-column:1/5;
    grid-row:4/5;
    color:white;
    text-align:center;
    margin-top:50px;
    font-family: 'Dosis', sans-serif;
    font-weight:600;
    background-color:black;
    padding-top:10px;
    font-size:20px;
}