@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
}

html {
	scroll-behavior: smooth;
}

body {
	width: 100%;
	background-color: black;
	font-family: Gill Sans, Gill Sans MT, Myriad Pro, DejaVu Sans Condensed, Helvetica, Arial," sans-serif";
}

body::-webkit-scrollbar {
	width: 12px;
}

body::-webkit-scrollbar-track {
	background-color: black;
}

body::-webkit-scrollbar-thumb {
	background-color: #000C27;
}

body::-webkit-scrollbar-thumb:hover {
	background-color: #D97000;
}

#header {
	height: 150px;
	width: 90%;
	position: relative;
	margin-top: 0px;
	margin-left: 5%;
	background-color: black;
	border-bottom: 3px solid white;
	border-radius: 100px;
}

#header h1 {
	font-size: 45px;
	color: white;
	text-align: center;
	margin-top: 20px;
}

@supports (-webkit-text-stroke: 2px white) {
	#header h1 {
		-webkit-text-fill-color: transparent;
		-webkit-text-stroke: 2px white;
	}
}

#header h2 {
	font-size: 30px;
	color: #DF9443;
	text-align: center;
	margin-top: 10px;
}

#navbar {
	position: relative;
	display: block;
	width: 90%;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	background-color: black;
}

.navSections {
	width: 100%;
	height: 50px;
	position: relative;
	float: left;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
}

#navSection2 {
	width: 80%;
	height: 30px;
	margin-left: 10%;
}

.nav1 {
	position: relative;
	margin-top: 10px;
	margin-left: 15px;
	margin-right: 15px;
	align-self: center;
}

.nav1 a {
	width: 70px;
	height: 30px;
	background-color: transparent;
	color: white;
	font-size: 22px;
	text-decoration: none;
}

.nav1 a:hover {
	color: #DF9443;
	transition: 0.2s;
}

.nav2 {
	position: relative;
	margin-top: 10px;
	margin-left: 15px;
	margin-right: 15px;
	align-self: center;
}

.nav2 a {
	width: 70px;
	height: auto;
	background-color: transparent;
	color: white;
	font-size: 18px;
	text-decoration: none;
}

.nav2 a:hover {
	color: #DF9443;
	transition: 0.2s;
}

#contact a {
	text-decoration: underline;
}

/************************************/

#main {
	position: relative;
	width: 100%;
	min-height: 300px;
	text-align: center;
	padding-top: 60px;
	margin-top: 30px;
}

#main h2 {
	color: white;
}

#main a {
	text-decoration: underline;
	color: #DF9443;
}

#form {
	width: 75%;
	height: auto;
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#form label {
	width: 80%;
	height: auto;
	position: relative;
	float: left;
	margin-left: 40px;
	margin-bottom: 20px;
	text-align: left;
	font-size: 20px;
	color: white;
}

#form input {
	width: 80%;
	height: 50px;
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	background-color: #0E0F4E;
	border: none;
	border: 2px solid #cccccc;
	color: #ffffff;
}

#form input:focus {
	outline-width: 0;
	border: 2px solid #df9443;
	background-color: #222222;
}

#form textarea {
	width: 80%;
	height: 150px;
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	background-color: #0E0F4E;
	border: none;
	border: 2px solid #cccccc;
	color: #ffffff;
}

#form textarea:focus {
	outline-width: 0;
	border: 2px solid #df9443;
	background-color: #222222;
}

#submitButton {
	width: 120px;
	height: 60px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 2px solid #df9443;
	background-color: #0E0F4E;
	font-size: 18px;
	color: #ffffff;
}

#submitButton:hover, #submitButton:focus {
	cursor: pointer;
	outline-width: 0;
	border: 4px solid #ffffff;
	background-color: #df9443;
	color: #000000;
}

#submitButton:active {
	border: 4px solid #0E0F4E;
	background-color: #ffffff;
	color: #000000;
}

/************************************/

#bottom {
	position: relative;
	float: left;
	display: flex;
	width: 100%;
	height: 200px;
	flex-flow: row nowrap;
	justify-content: space-around;
	margin-top: 30px;
	background-color: #df9443;
}

.navBottom {
	display: block;
	flex-basis: auto;
	width: auto;
	margin-top: 60px;
}

.navBottom a {
	font-size: 30px;
	color: white;
	text-decoration: none;
	transition: 0.2s;
}

.navBottom a:hover {
	font-size: 32px;
	color: black;
	transition: 0.2s;
}

#contactBottom a {
	text-decoration: underline;
}

#footer {
	width: 100%;
	height: 20px;
	z-index: 1;
	position: fixed;
	background-color: #000C27;
	bottom: 0px;
	left: 0px;
	padding-top: 5px;
	text-align: center;
	color: #CFCFCF;
	font-size: 14px;
}

