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

/* --- Color Palette
List colors here, along with tags each color is used for

*/

* {
	box-sizing: border-box;
	font-family: Arial;
	color: navy;
}

#wrapper {
	background-color: beige;
}

body {
	background-color: beige;
}

header {
	font-size: 18px;
	align: center;
}

main {
	padding: 20px;
	overflow: hidden;
}

h1 {
	text-align: center;
	font-family: Arial;
	
}

section h1 {
	text-align: left;
	color: navy;
	font-size: 28px;
	font-family: Times New Roman;
}

h2 { 

}

h3 {
	font-family: Times New Roman;
	font-size: 24px;
	color: #0160D6;
}

section p {

}

aside p {
	
}

p {
	font-size: 16px;
	margin-left: 20px;
	line-height: 1.20;
}


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: darkslategray;
}



img {
	margin-top: 20px;
	display: block;
	border-radius: 12px;
}

section {
	width: 70%;
	float: left;
}

aside {
	width: 25%;
	float: right;
}

.button {
	margin-top: 24px;
	margin-right: auto;
	margin-left: auto;
}

a.button, input.button {
	color: #FFF;
	background-color: #0160D6 !important;
	font-weight: bold;
	text-decoration: none;
	font-size: 16px;
	text-align: center;
	clear: both;
	padding: 10px 20px;
	cursor: pointer;
	box-shadow: 2px 2px 2px 2px gray;
	border-radius: 12px;
	width: 300px;
	display: block;
	}
	
.menu-bar {
	background-color: darkslategray;
	text-align: center;
	border-radius: 12px;
}

.menu-bar ul {
	display: inline-flex;
	list-style: none;
	color: whitesmoke;
	border-radius: 12px;
}

.menu-bar ul li {
	width: 120px;
	margin: 8px 16px;
	padding: 2px;
}

.menu-bar ul li a {
	text-decoration: none;
	color: whitesmoke;
}

.active, .menu-bar ul li:hover {
	background-color: #00AAF8;
	border-radius: 12px;
	text-decoration: underline;
	box-shadow: 2px 2px 2px 2px beige;
}

.menu-bar .fa {
	margin-right: 8px;
}

.submenu-1 {
	display: none;
}

.menu-bar ul li:hover .submenu-1 {
	display: block;
	position: absolute;
	z-index: 10;
	text-align: center;
	background-color: gray;
	margin-left: -15px;
}

.menu-bar ul li:hover .submenu-1 ul {
	display: block;
	margin: 2px;
}

.menu-bar ul li:hover .submenu-1 ul li {
	width: 140px;
	padding: 4px;
	border-bottom: 1px dotted #FFF;
	margin-right: auto !important;
	margin-left: auto !important;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	border-radius: 12px;
}

.menu-bar ul li:hover .submenu-1 ul li:last-child {
	border-bottom: none;
}

menu-bar ul li:hover .submenu-1 ul li a:hover {
	color: whitesmoke; 
}

.feature {
	text-decoration: underline;
	text-align: center;
	font-size: 20px;
	font-family: Georgia;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.center {
	text-align: center;
	clear: both;
}

.clear {
	clear: both;
}

footer {
	text-align: center;
	background-color: darkslategray;
	color: whitesmoke;
	border-radius: 12px;
	padding: 12px 0;
	margin-top: 24px;
	
}

footer em {
	color: whitesmoke;
}



