@charset "utf-8";
/* CSS Document */

body{
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	background-color:darkgray;
}

h1{
	text-align:center;
	font-weight:bold;
}

h2{
	text-align:center;
	font-weight:bold;
}

li {
	text-align:left;
	list-style:none;
	padding:10px;
}

a{
	text-decoration:none;
	color:orange;
}

a:hover{
	color:darkorange;
	text-decoration:underline;
}

#box-parent{
	text-align:center;
}

#list-box{
	display:inline-block;
	height:340px;
	width:200px;
	background-color:gray;
	box-sizing: border-box;
	box-shadow: 5px 5px black;
}

#final-box{
	background-color:gray;
	display:inline-block;
	height:50px;
	width:200px;
	padding:10px;
	box-sizing: border-box;
	box-shadow: 5px 5px black;
}

footer{	
	position:fixed;
	bottom:0;
	left:0;
	right:0;
	background-color:orange;
	height:50px;
	width:100%;
}
