body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #575e75;
	background: #fcfcfc;
	line-height: 1.4em;
}
a {
	font-weight: bold;
	text-decoration: none;
	color: #25d;
}
a:hover {
	color: #03a;
}

.bar {
	position: absolute;
	right: 0;
	background: #2c6d31;
	color: #fff;
	font-size: 14px;
	align-items: center;
	
	width: 100vw;
	height: auto;
}

.bar a {
	color: #fff;
}
.bar a:hover {
	color: #f6ab3c;
}

/* Header */
.bar#header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	
	box-sizing: border-box;
	height: 3rem;
	
	font-weight: bold;
	font-size: 1rem;
}
#header img.logo {
	height: 2.25rem;
	margin-left: 1.05em;
	position: relative;
	bottom: 0.25em;
}
#header .h-item.button {
	cursor: pointer;
	height: 3rem;
	vertical-align: middle;
}
#header img {
	user-select: none;
}
#header .h-item.button:hover {
	background-color: #255d2a;
}
#header .h-item {
	padding: 0 0.75rem;
	display: flex;
	align-items: center;
	vertical-align: middle;
}

/* Content */
.main-content {
	padding-top: 3.5rem;
	padding-bottom: 0.2rem;
	min-height: calc(100vh - 14rem);
}
.small {
	font-size: 90%;
}

/* Footer */
.footer-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: left;
	
	padding: 0.15em;
}
.footer-content > p {
	max-width: min(50em, 90vw);
}

#footer-socials {
	float: right;
	margin-bottom: 10px;
}
#footer-socials a {
	padding-right: 17px;
	padding-bottom: 5px;
}
.sub-footer, #semicolon {
	background: black;
	text-align: center;
}
.sub-footer p {
	margin-block: 0em;
	padding-block-start: 0.5em;
}

#semicolon {
	margin: 0;
	color: white;
	font-size: 81.25%;
	padding-left: 18px;
	text-align: left;
}

/* Dark mode */
body.dark {
	background-color: #111111;
	color: #fcfcfc;
}
body.dark .bar {
	background-color: #333333;
}
body.dark a {
	color: #f6ab3c;
}
body.dark a:hover {
	color: #d4891a;
}
body.dark #header .h-item.button:hover {
	background-color: #515151;
}