@charset "UTF-8";
/* CSS Document */

/* -------------------------------- BASICS */
body {
	width: 100%;
	max-width: 2560px;
}
#PageContainer, #PageFooter {
	width: 100%;
}
	#PageHeader {
		display: flex;
		justify-content: center;
		border-top: 10px solid #b7532b;
		border-bottom: 10px solid #b7532b;
		padding: 2.5vw 0;
	}
		.header-logo {
			width: 90%;
			max-width: 600px;
		}
	#PageBody {
		width: 90%;
		max-width: 1000px;
		margin: 0 auto;
	}
	#PageFooter {

	}
		.footer-text {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 90%;
			height: 100%;
			max-width: 1000px;
			border-top: 1px solid #b7532b;
			margin: 0 auto;
			font-size: 1.5em;
			font-variant: small-caps;
		}
/* -------------------------------- MISCELLANY */
.full-width {
	width: 100%;
}
.limited-width {
	width: 100%;
	max-width: 1000px;
}
.terra-cotta {
	color: #b7532b;
}