@charset "utf-8";

/* 
	Filename: ap_header.css
	Author: Glenn Blazier
	
	Animation Project Header Style Sheet
*/

/* Header Body */

Header {
	width: 100%;
	background-color: #29589e;
	color: rgb(180, 153, 222);
	font-size: 1.85em;
	text-align: center;
	border-bottom: 10px solid rgb(180, 153, 222);
	/*border-radius: 25px;
	box-shadow: 5px 5px 3px 10px rgba(15, 15, 15, 0.15);*/
}

/* Images */

#bottom_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}
	
#logo {
	width: 15%;
	height: auto;
}

#banner {
	width:100%;
	height: 400px;
	object-fit: cover;
	display: block;
}
/* Nav Bar */

nav > ul {
	display: flex;
	list-style: none;
	
}

nav > ul > li {
	font-size: 1.0em;
	font-weight: bold;
	line-height: 2.0em;
	height: 1.8em;
	padding: 0px 20px;
}
	
nav > ul >li > a {
		color: white;
		display: block;
		text-decoration: none;
}

/* body */
body {
	background: #224882;
}

/* Footer */
footer {
	background-color: #29589e;
	border-top: 10px solid rgb(180, 153, 222);
}