@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: 8px;
}

body::-webkit-scrollbar-track {
	background-color: black;
}

body::-webkit-scrollbar-thumb {
	background-color: #000C27;
}

body::-webkit-scrollbar-thumb:hover {
	background-color: #D97000;
}

#header {
	height: 120px;
	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: 4vw;
	color: white;
	text-align: center;
	margin-top: 20px;
}

#header h2 {
	font-size: 3vw;
	color: #DF9443;
	text-align: center;
	margin-top: 15px;
}

#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;
	align-self: center;
}

.nav1 a {
	width: auto;
	height: 30px;
	background-color: transparent;
	color: white;
	font-size: min(4vw, 19px);
	text-decoration: none;
}

.nav2 {
	position: relative;
	margin-top: 10px;
	align-self: center;
}

.nav2 a {
	width: 70px;
	height: auto;
	background-color: transparent;
	color: white;
	font-size: min(3.5vw, 16px);
	text-decoration: none;
}

#apps a {
	text-decoration: underline;
}

/************************************/

#main {
	width: 100%;
	height: 1000px;
	/*
	background: radial-gradient(ellipse at top right, #111111, transparent);
	background: radial-gradient(ellipse at bottom left, #232323, transparent);
	*/
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: center;
}

.app {
	display: block;
	position: relative;
	width: 80%;
	height: 60px;
	margin-top: 40px;
	margin-bottom: 20px;
	border-radius: 4px;
}

.app h3 {
	position: absolute;
	width: 100%;
	top: -2px;
	color: white;
	text-align: center;
	padding-top: 20px;
	font-size: 20px;
}

/* .app i {
	position: absolute;
	font-size: 30px;
	top: 25%;
	left: 78%;
	color: white;
} */

.app a {
	z-index: 2;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: transparent;
}

.app::before {
	width: 98%;
	height: 84%;
	position: absolute;
	left: 1%;
	top: 8%;
	content: "";
	background-color: black;
	border-radius: 2px;
}

.app:active:before {
	background-color: transparent;
	transition: 0.1s;
}

/* Ear Training */
#app1 {
	order: 1;
	background-image: linear-gradient(-110deg, rgba(215,30,30,1.0), rgba(30,30,50,1.0));
}

/* Perfect Pitch */
#app2 {
	order: 2;
	background-image: linear-gradient(-110deg, rgb(57, 67, 145), rgba(30,30,50,1.0));
}

/************************************/

#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: 24px;
	color: white;
	text-decoration: none;
}

#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;
}
