@font-face {
	font-family: "Phantom Sans";
	src: url(/static/hc.woff2) format("woff2");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Phantom Sans Bold";
	src: url(/static/hcbold.woff2) format("woff2");
	font-weight: bold;
  	font-style: normal;
  	font-display: swap;
}
* {
	font-family: "Phantom Sans", sans-serif;
	margin:0;
}
body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #204c94;
	color: white;
}
#navbar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background: linear-gradient(0deg,rgba(34, 82, 224, 1) 0%, rgba(115, 150, 255, 1) 100%);;
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
	margin-bottom: 10px;
	position: sticky;
	top: 0;
}
.navbar-button {
	background:none;
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 1.2rem;
}
#orpheus {
	position: fixed;
	left:0;
	top:55px;
	width: 300px;
}

#main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* height: 25vh; */
	/* max-height: 200px; */
	margin-bottom: 20px;
}
#main > * {
	margin: 10px;
}
#title {
	font-size: 8rem;
}
#login-section {
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.milestones {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: center;
	margin-bottom: 20px;
	/* border: red solid 1px; */
	padding:10px;
	/* width: 55vw; */
	width: 100%;
	box-sizing: border-box;
}
.milestone {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	/* border: #77d594 solid 1px; */
	margin-left: 20px;
	margin-right: 20px;
	padding-top: 3vw;
	padding-bottom: 3vw;
	border-radius: 5px;
	flex: 1;
	transition:cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}
.milestone h2 {
	margin-bottom: 15px;
}
.milestone:hover {
	transform: translateY(-5px);
}

.center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.center-h {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.debug {
	border: red solid 1px;
}

@media (max-width: 1100px) {
	.milestones {
		flex-direction: column;
	}
	.milestone {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	#orpheus {
		display:none;
	}
}

.lowend {
	background: linear-gradient(0deg,rgba(34, 82, 224, 1) 0%, rgba(115, 150, 255, 1) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}
.green {
	background: linear-gradient(347deg,rgba(98, 165, 81, 1) 58%, rgba(145, 217, 126, 1) 100%);
	box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
	height:100%;
	border-radius: 0 50px 50px 0;
	width: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card {
	margin: 10px;
	border: 2px solid #4988f8;
	border-radius: 10px;
	width: 65vw;
	max-width: 1200px;
}
.cardtitle {
	width: 100%;
	background: linear-gradient(90deg,rgba(34, 82, 224, 1) 0%, rgba(115, 150, 255, 1) 100%);
	font-size: 2rem;
	/* margin: 10px; */
	border-radius: 8px 8px 0 0;
	color: white;
	box-sizing: border-box;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.cardinner {
	padding: 20px;
	color: black;
	box-sizing: border-box;
	background-color: white;
	width:100%;
	border-radius: 0 0 8px 8px;
}
.inline {
	display: flex;
	/* width: 31vw; */
	/* vertical-align: top; */
	width: auto;
	flex: 1;
	justify-content: flex-start;
}
.inline .cardinner {
	flex: 1;
}
.inlinecards {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: center;
	width: 65vw;
	max-width: 1200px;
}