@font-face {
	font-family: Myriad Regular;
	src: url(Myriad-Pro-Regular.ttf)
}

:root {
	--accent-hhs: #9ea700;
	--accent-dif: #ffec03;
	--theme-text: white;
}

body {
	/* Set this the same as the height of the `header .container`  plus the height of the `welcomeTitle` */
	padding-top: 132px;
	font-family: Myriad Regular, sans-serif;
	font-size: 18px;
	color: #212529;
	overflow-x: hidden;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
	z-index: 255;
}

header .container-hhs {
	background-color: var(--accent-hhs);
	height: 100px;
	width: 50%;
	float: left;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
}

header .container-dif {
	background-color: var(--accent-dif);
	height: 100px;
	width: 50%;
	float: right;
	align-items: center;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.header-triangle {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	background: linear-gradient(to top right, var(--accent-hhs) 0%, var(--accent-hhs) 50%, var(--accent-dif) 50%, var(--accent-dif) 100%);
	width: 100px;
	height: 100px;
}

.triangle {
	position: absolute;
	/* header + welcome title */
	top: calc(76px + 32px);
	left: 0;
	background: linear-gradient(to top left, transparent 0%, transparent 50%, var(--accent-dif) 50%, var(--accent-dif) 100%);
	width: 50%;
	height: 75%;
	z-index: -1;
}

.logo {
	display: inline-block;
	height: 100%;
	/* Same as height of header */
	max-height: 100px;
	margin: 30px 0 12px;
}

#logo-hhs {
	margin-right: 80px;
	float: right;
}

#logo-dif {
	margin-top: 8px;
	margin-left: 80px;
	float: left;
	height: 90%;
}

#welcome-title {
	position: absolute;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	top: 76px;
	left: 0;
	width: 100%;
	height: 32px;
	/* Same as height */
	line-height: 32px;
	background-color: black;
	color: white;
	padding: 8px;
}

#map {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

#questContainer {
	text-align: center;
}

.routeframe {
	border: 1px var(--accent-hhs) solid;
	display: inline-block;
	width: 50%;
	height: 400px;
}

#content {
	margin-left: auto;
	margin-right: auto;
	width: 60%;
}

.text-center {
	text-align: center;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	text-align: center;
}

.not-yet-implemented {
	background-color: #ffff00;
}