/* 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 {
	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;
}

/* End of CSS Reset */




body {
	background-color: black;
}

.logo {
	width: 200px;
	height: 200px;
}


main {
    display: grid;
    grid-template-areas:
    "header1 header2 header3 header4"
    "paragraph1 paragraph2 paragraph3 paragraph4";

    grid-template-columns: 300px;
    grid-template-rows: auto;
    row-gap: 40px;
    column-gap: 20px;
	padding-left: 100px;
}

#navLinks {
	display: flex;
	justify-content: center;
	color: greenyellow;
}

a {
	text-decoration: none;
}


nav {
	background-color: #032f07;
}



#header {
	display: flex;
	color: greenyellow;
	padding-bottom: 35px;
	font-size: 50px;
	font-weight: bold;
	padding-left: 650px;
}



#header1 {
	color: greenyellow;
	grid-area: header1;
	font-weight: bold;
	text-align: center;
	font-size: 15px;
	height: 15px;
	width: 200px;
	border: 1px solid green;
}

#paragraph1 {
	color: greenyellow;
	grid-area: paragraph1;
	font-style: italic;
	text-align: center;
	border: 1px solid green;
	height: 120px;
	width: 200px;
}


#header2 {
	color: greenyellow;
	grid-area: header2;
	font-weight: bold;
	text-align: center;
	font-size: 15px;
	height: 15px;
	width: 200px;
	border: 1px solid green;
}

#paragraph2 {
	color: greenyellow;
	grid-area: paragraph2;
	font-style: italic;
	text-align: center;
	border: 1px solid green;
	height: 120px;
	width: 200px;
}


#header3 {
	color: greenyellow;
	grid-area: header3;
	font-weight: bold;
	text-align: center;
	font-size: 15px;
	height: 15px;
	width: 200px;
	border: 1px solid green;
}

#paragraph3 {
	color: greenyellow;
	grid-area: paragraph3;
	font-style: italic;
	text-align: center;
	border: 1px solid green;
	height: 120px;
	width: 200px;
}


#header4 {
	color: greenyellow;
	grid-area: header4;
	font-weight: bold;
	text-align: center;
	font-size: 15px;
	height: 15px;
	width: 200px;
	border: 1px solid green;
}

#paragraph4 {
	color: greenyellow;
	grid-area: paragraph4;
	font-style: italic;
	text-align: center;
	border: 1px solid green;
	height: 120px;
	width: 200px;
}


.main {
    display: grid;
    grid-template-areas:
    "image1 image2";

    grid-template-columns: 300px;
    grid-template-rows: auto;
    row-gap: 40px;
    column-gap: 450px;
	padding-left: 100px;
}


img {
	width: 500px;
	height: 500px;
	border: solid #032f07 3px;
}

#image1 {
	display: flex;
	align-self: right;
}

#image2 {
	display: flex;
	align-self: center;
}



@media screen and (min-width: 0px) and (max-width: 599px) {
    #main {
    display: grid;
    grid-template-areas:
    "header1" 
	"header2"
	"header3"
	"header4"
    "paragraph1"
	"paragraph2"
	"paragraph3"
	"paragraph4";
    }

	#image1 {
	display: flex;
	align-self: right;
}

#image2 {
	display: flex;
	align-self: center;
}

	img {
	width: 50px;
	height: 50px;
	border: solid #032f07 3px;
}
}

@media screen and (min-width: 600px) and (max-width: 1199px) {
    #main {
    display: grid;
    grid-template-areas:
    "header1 header2 header3 header4 paragraph1 paragraph2"
	"paragraph3 paragraph4";
    }

#image1 {
	display: flex;
}

#image2 {
	display: flex;
	justify-content: center;
}

	img {
	width: 300px;
	height: 300px;
	border: solid #032f07 3px;
}
}

@media screen and (min-width: 1200px) and (max-width: 1500px) {
    #main {
    display: grid;
    grid-template-areas:
    "header1 header2"
	"paragraph1 paragraph2" 
	"header3 header4"
	"paragraph3 paragraph4";
}

	img {
	width: 200px;
	height: 200px;
	border: solid #032f07 3px;
}
}