/* local font includes via https://gwfh.mranftl.com/fonts/ */

/* cal-sans-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cal Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/cal-sans-v2-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* unna-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Unna';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/unna-v25-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* unna-italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Unna';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/unna-v25-latin_latin-ext-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* unna-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Unna';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/unna-v25-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* unna-700italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Unna';
  font-style: italic;
  font-weight: 700;
  src: url('fonts/unna-v25-latin_latin-ext-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* anonymous-pro-regular - cyrillic_greek_latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anonymous Pro';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/anonymous-pro-v22-cyrillic_greek_latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* anonymous-pro-italic - cyrillic_greek_latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anonymous Pro';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/anonymous-pro-v22-cyrillic_greek_latin_latin-ext-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* anonymous-pro-700 - cyrillic_greek_latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anonymous Pro';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/anonymous-pro-v22-cyrillic_greek_latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* anonymous-pro-700italic - cyrillic_greek_latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Anonymous Pro';
  font-style: italic;
  font-weight: 700;
  src: url('fonts/anonymous-pro-v22-cyrillic_greek_latin_latin-ext-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ---------------- end of fonts ------------------ */

:root {
}

* {
	padding:0;
	margin:0px;
}

body {
	background: #eee7e6;
	padding-top: 25px;

	color:#212020;
	font-family: Unna, serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;

	/*letter-spacing: 0.001em;*/
	line-height: 1.3;
}

main {
	margin:0 auto;
	--main-width:591px;
	max-width:var(--main-width);
}

section {
	background:#d8cecb;
	margin: 24px 0 0 0;
	padding: 2px 0 0 0;
	border-radius: 0 0 2px 2px;
}
section > :is(h2,h3):first-child:after {
	content:'';
	display:block;
	margin:0 6px;
	height: 2px;
	background: #271600;
	z-index:2;
	position:relative;
	max-width:calc(var(--main-width) - 20px - 12px);
}

section#header {
	background:unset;
	margin-bottom:-24px;
}
section#header:before {
	display:none;
}

main > section:first-child:before {
	display:none;
}


h1:after {
	content:'';
	display:block;
	background:#3c2200;
	position:absolute;
	left:-3px;
	right:-3px;
	bottom:2px;
	height:2px;
}


p {
	padding: 0.5em 1em 0.75em 1em;
}

h1, h2, h3 {
	color: #000000;
	width:max-content;
	padding:0 1px;

	font-family: "Cal Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
h1 {
	width:unset;
	background:#ddd4cb;
	color:#000000;
	height:40px;
	margin:0;
	padding: 4px 0 0 0;
	text-align:center;
	font-size:30px;
	line-height:30px;
	font-weight:500;
	position:relative;
}
h2, h3 {
	background:unset;
	height:17px;
	margin:-18px 0 0 20px;
	line-height:18px;
	font-size:18px;
	font-weight:650;
}

h3 {
	height:15px;
	margin:-16px 0 0 20px;
	line-height:16px;
	font-size:16px;
}

#infobox {
	display:flex;
	align-items:stretch;
	justify-content:space-evenly;
	padding:0 0 20px 0;
	margin:0;
	gap:0;
}
#info {
	color:#000000;
	padding: 17px;
	font-size:14px;
	font-weight:550;

}
#info a {
	color:#040000;
	padding: 3px;
	margin: 0 -3px;
}
#info a:visited {
	color:#020200;
}
#info a:hover {
	color:#e5dfdd;
	background: #000000;
}
#info p {
	padding: 0;
	margin: 0;
}
#logo {
	margin:10px;
	padding:0;
	width:240px;
	display:block;
	background:#eee7e6;
}

footer {
	padding-top:40px;
	text-align:center;
	color:#aaa;
	font-size:10px;
	font-weight:500;
}

a {
	font-family:"Cal Sans", sans-serif;
	font-weight:400;
	font-size:14px;
	color:#040000;
	padding:3px;
	margin:0 -3px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	
}
a:visited {
	color:#888;
}
a:hover {
	color:#e5dfdd;
	background: #000000;
}

footer a {
	color:#999;
}

ul, ol {
	margin-left: 2em;
	margin-right: 1em;
	padding-bottom: 1.2em;
}

h2 ~ ul {
	margin-top:5px;
}

table {
	margin-left: auto;
	margin-right: auto;
}

code {
	font-family: "Anonymous Pro", monospace;
	font-weight: 400;
	font-style: normal;
	background:#fff4;
	padding:2px;
	font-size: 14px;
}

img.warning {
	display:block;
	float:left;
	height: calc(32px * 3);
	margin:20px;
}

section.restrictions::after {
	content:'';
	clear:both;
	display:block;
}
