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 copied CSS coe for reset*/

/*Start of own css code for Week 2 assignment */

#container {
	width:600px;
	margin-left:auto;
	margin-right:auto;
	margin-top:40px;
}

#title {
	padding-top:20px;
	padding-bottom:20px;
	background-color:black;
}

#intro{
	padding-top:20px;
	background-color:white;
	display:flex;
	align-items:flex-start;
}

#gallery{
	background-color:white;
	display:flex;
	align-items:flex-start;
	padding-top:20px;
	padding-bottom:10px;
}

#footer{
	background-color:black;
	padding-top:12px;
	padding-bottom:12px;
}

/*child sections */

#title h1{
	font-size:36px;
	font-weight:bold;
	font-family:Helvetica;
	color:white;
	text-align:center;
}

#intro_left{
	width:400px;
	background-color:red;
}

#intro_left img{
	width:100%;
	display:block;
}

#intro_right{
	width:200px;
	background-color:white;
}

#intro_right h1{
	font-size:22px;
	font-weight:bold;
	font-family:Helvetica;
	margin-top:30px;
	margin-left:30px;
	margin-right:30px;
	margin-bottom:12px;
}

#intro_right p{
	font-size:14px;
	font-family:Helvetica;
	margin-right:30px;
	margin-left:30px;
}

#footer p{
	font-size:10px;
	font-family:Helvetica;
	color:#A0A0A0;
	margin-right:30px;
	margin-left:30px;
}

.gallery_item{
	margin-bottom:12px;
	width:200px;
	background-color:white;
}

.gallery_item img{
	width:200px;
	display:block;
}

.gallery_item h1{
	font-weight:bold;
	font-size:18px;
	font-family:Helvetica;
	text-align:center;
	margin-top:10px;
}
