@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;
}

#home a {
	text-decoration: underline;
}

/************************************/

#flex {
	position: relative;
	width: 100%;
	height: auto;
	background-color: black;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start;
}

#flex a {
	display: block;
	flex-basis: auto;
	width: 300px;
	height: 300px;
	margin: 40px 20px 40px 20px;
}

#flex img {
	position: relative;
	object-fit: cover;
	flex-basis: auto;
	width: 100%;
	height: 100%;
	transition: 0.15s;
	transition-timing-function: ease;
}

#flex img:hover {
	scale: 1.1;
	transition: 0.35s;
	transition-timing-function: ease;
}

/************************************/

#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;
}

#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;
}