

#header { 
	position:fixed;
	top: 0;
	left: 0;
	background-color: orange;
	width: 100%;
	padding: 15px;
	font-family: Century Gothic, Arial, sans-serif;	
    
	height: 50px;
	z-index: 1000;
	
}
/* Writing the # means this attributes only affect that specific element */
#header a {
	color: white;
	text-decoration: none;
	
}

/* Not using any symbol when calling out the element means that it applies to all os those elements on the page with that element tag globally */
ul {
	float: right;
}

/* I decided to isolate the element name as an id and to tell it to "float" to the left until it hits the side, like a leaf in a pool, reserving a space that these elements will not enter  */
#name {
	float: left;
}

ul {
	list-style-type: none;
	text-decoration: none;
	margin-right: 150px;
}
li {
	display: inline-block; /* side by side */
	margin:0 10px;
}
#banner h1 {
	font-family: Century Gothic, Arial, sans-serif;
	color: white;
	text-align: center;
	position: absolute; /* Absolute positioning tells the element to adjust it's position relative t it's parent. If not defined parent exists, the page will be used */
	font-size: 30pt;
	top: 50%;
	left: 50%;
	
}

#banner {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
	background-image: url("../../images/bokeh.jpg");
	margin-bottom: 50px;
    position: relative;
	margin-top: 80px;
}
#main {
overflow: auto;
	width: 900px;
	margin: 0 auto; /* This shorthand property tells the block level element to center itself inside the parent */
}

body {
	margin: 0;
	font-family: "Century Gothic", Arial, sans-serif;
}
	

#leftcolumn {
	float: left;
	width: 400px;
	min-height: 250px;
	background-color: lightgreen;
	padding: 25px;
}
#leftcolumn h2 {
font-family: Georgia, serif;
}
#leftcolumn p {
	font-family: Century Gothic, Arial, Sans-serif;
	
	width: 200;
	
}

#rightcolumn {
	float: right;
	width:45%; /* Using a percentage tells the element to occupy that percentage of the parent container that will shrink and expand as the window is resized */
	
}

#rightcolumn img {
    display: block;
    margin-bottom: 20px;
}

#footer a {
    color: orange;
    text-decoration: underline;
	
}

#footer p {
	width: 900px;
	margin: 0 auto;
}