:root {
	--color-bg: #f4fffc;
	--color-text: #00340b;
	/* --color-text: #000f00; */
	--color-link: #00691a;
	--color-road-sign: #2f604d;
}

html {
	background-color: var(--color-bg);
	height: 100%;
	width: 100%;
}

h1 {
	font-size: 2rem;
}

h2, h3, h4 {
	width: min(100%, 640px);
	margin: auto;
}

p, ul, ol {
	width: 100%;
	max-width: 640px;
	margin: 14px auto;
}

ul, ol {
	padding-inline-start: 0px;
}

li {
	margin-left: 30px;
	padding-top: 2px;
	padding-bottom: 2px;
}

a {
	color: var(--color-link);
}

figure {
	text-align: center;
}

figcaption {
	width: min(100%, 580px);
	margin: auto;
}

img {
	width: min(100%, 600px);
}

video {
	width: 100%;
	max-width: 600px;
	max-height: 350px;
}

@font-face {
	font-family: "EBGaramond08-ASCII";
	src: url("/fonts/EBGaramond08-Regular-ASCII.woff2") format("woff2");
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "EBGaramond08-ASCII";
	src: url("/fonts/EBGaramond08-Italic-ASCII.woff2") format("woff2");
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "EBGaramond08-Full";
	src: url("/fonts/EBGaramond08-Regular-Full.woff2") format("woff2");
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "EBGaramond08-Full";
	src: url("/fonts/EBGaramond08-Italic-Full.woff2") format("woff2");
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "HighwayGothic";
	src: url("/fonts/HWYGWDE.woff2");
}

/*
@font-face {
	font-family: 'QueenRocker';
	src: url('/fonts/queen-rocker.ttf');
}
*/

body {
	color: var(--color-text);
	font-family: "EBGaramond08-ASCII", "EBGaramond08-Full", serif;
	/*Superclarendon, "Bookman Old Style", "URW Bookman",
		"URW Bookman L", "Georgia Pro", Georgia, serif;*/
	font-weight: 300;
	font-size: 1.3em;
	/* top | right | bottom | left */
	padding: 0 20px 20px 20px;
}

.signpost {
	position: relative;
	padding: 0.3rem 2rem;
	text-align: center;
	border: 3px solid black;
	border-radius: 0.25rem;
	width: fit-content;
	margin: auto auto 1rem auto;
	color: var(--color-bg);
	font-family: "HighwayGothic";
	background:
		radial-gradient(circle, black 5px, transparent 6px) top left,
		radial-gradient(circle, black 5px, transparent 6px) top right,
		radial-gradient(circle, black 5px, transparent 6px) bottom left,
		radial-gradient(circle, black 5px, transparent 6px) bottom right,
		var(--color-road-sign);
	background-size: 10px 10px;
	background-repeat: no-repeat;
	background-position:
		8px 8px,
		calc(100% - 8px) 8px,
		8px calc(100% - 8px),
		calc(100% - 8px) calc(100% - 8px);
}

form {
	max-width: 420px;
	margin: 20px auto;
}

.feedback-input {
	font-family: "EBGaramond";
	font-size: 1.3rem;
	border-radius: 5px;
	background-color: transparent;
	border: 2px solid var(--color-road-sign);
	transition: all 0.3s;
	padding: 12px;
	margin-top: 0;
	margin-bottom: 8px;
	width: 100%;
	box-sizing: border-box;
	outline: 0;
}

.feedback-input:focus {
	border: 2px solid #cc4949;
}

textarea {
	height: 120px;
	line-height: 150%;
	resize: vertical;
}

[type="submit"] {
	width: 100%;
	/*background: var(--color-link);*/
	background: var(--color-road-sign);
	border-radius: 5px;
	border: 0;
	cursor: pointer;
	color: white;
	font-family: "HighwayGothic";
	font-size: 24px;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: all 0.3s;
	font-weight: 700;
}
[type="submit"]:hover {
	background: #cc4949;
}
