:root {
	--background: rgb(238 235 241);
	--colDark: rgb(46 12 86);
	--colMid: rgb(81 52 119);
	--colLight: #dfd0b3;
	--colDarkest: rgb(0 0 0);
}

* {
	box-sizing: border-box;
}

body {
	background: var(--colLight);
	margin: 0;
	font: 16px/1.2em trade-gothic-next, sans-serif;
	text-rendering: geometricPrecision;
}

a {
	color: var(--colDarkest);
	display: block;
	padding-bottom: 10px;
	text-decoration: none;
}

section {
	min-height: 100%;
}

section header,
section footer,
section main {
	margin: 0;
	padding: 0;
	width: 100%;
}

section header {
	background: url(/images/themes/default/windowbackground.gif) 0 0;
	font: bold 18px/1.2em CaslonAntique, serif;
	padding: 8px 5px;
	position: relative;
	text-align: center;
	text-shadow: rgb(255 255 255 / 30%) 1px 1px 0;
}

section header::after {
	background: url(/images/themes/default/topbar.gif) 0 0;
	content: ' ';
	display: block;
	height: 3px;
	left: -3px;
	margin-top: 8px;
	position: absolute;
	/* top: 0; */
	width: 100%;
}

h1 {
	font-size: 18px;
	line-height: 20px;
	margin: 0;
}

h2 {
	font-size: 18px;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

figure {
	margin: 0;
}

figure::after {
	background: url(/images/themes/default/topbar.gif) 0 0;
	content: ' ';
	display: block;
	height: 3px;
	left: -3px;
	margin-top: -3px;
	position: absolute;
	/* top: 0; */
	width: 100%;
}

figcaption {
	margin: 10px 0 0;
}

p {
	margin: 0;
	padding: 10px;
}

figure img {
	height: unset;
	width: 100%;
}