@charset "utf-8";
/* CSS Document */

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 3 assignment */

#container {
	width:800px;
	margin-left:auto;
	margin-right:auto;
	margin-top:40px;
	margin-bottom:40px;
	font-family: "Poppins", sans-serif;
}

#title {
	height:70px;
	background-color:darkgreen;
	margin-bottom:20px;
	padding-top:20px;
	color:white;
	text-align:center;
	font-family:"Roboto Slab", serif;
	font-weight:bold;
	font-size:36px;
}

#content {
	display:flex;
	align-items:flex-start;
}

#content_left{
	width:280px;
	height:500px;
	background-color:black;
	margin-right:20px;
}

#content_right{
	width:520px;
	height:500px;
	background-color:white;
}

#video{
	width:500px;
	height:300px;
	background-color:black;
	margin-bottom:20px;
}

#menu{
	height:20px;
	background-color:darkgreen;
	margin-top:20px;
	padding:20px;
	text-align:right;
}

/* Child Sections */

#content_right h1{
	font-family:"Raleway", sans-serif;
	font-weight:600;
	font-size:24px;
	margin-bottom:20px;
}

#content_right p{
	font-family:"Raleway", sans-serif;
	font-weight:300;
	font-size:18px;
	margin-bottom:12px;
}

#menu a {
	color:white;
	font-size:24px;
	margin-left:10px;
}
