body {
	padding: 0px;
	margin: 0px;
	font-family: "Century Gothic";
	color: #22347E;
}
.input {
	background: #3396FF;
	font-family: "Century Gothic";
	font-size: 1.3em;
	color: #22347E;
	border-radius: 10px;
	border: 5px solid #fff;
	box-shadow: 0px 10px 20px #000;
	padding: 10px;
	width: 100%;
}
.input:hover {
	background: #DFFCF8;
	border: 5px solid #ccc;
}
.input2 {
	background: #3396FF;
	font-family: "Century Gothic";
	font-size: 1.3em;
	color: #22347E;
	border-radius: 10px;
	border: 5px solid #fff;
	box-shadow: 0px 10px 20px #000;
	padding: 10px;
	width: 60%;
}
.input2:hover {
	background: #DFFCF8;
	border: 5px solid #ccc;
}

#nav {
	background: #7abcff;
	width: 100%;
	position: fixed;
	height: 50px;
	font-size: 0.8em;
	line-height: 50px;
	text-align: center;
	z-index: 1;
}

#nav a {
	background: #3C33FF;
	border-radius: 5px;
	color: #ffffff;
	font-family: "Century Gothic";
	font-size: 1em;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	width: 150px;
	text-decoration: none;
}

#nav a:hover {
	background: #FF5833;
	transition: all 0.5s ease;
}