@font-face {
	font-family: 'Fragment Mono';
	src: url('/fonts/FragmentMono-Regular.ttf') format('truetype');
	font-style: normal;
}
@font-face {
	font-family: 'Fragment Mono';
	src: url('/fonts/FragmentMono-Italic.ttf') format('truetype');
	font-style: italic;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ol,
ul,
li,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
footer,
header,
nav,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
	margin: 0;
}
ol,
ul {
	list-style: none;
}
html {
	box-sizing: border-box;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}
:root {
	--baseFontFamily: 'Fragment Mono', monospace, sans-serif;
	--baseFontSize: 18px;
	--smFontSize: 14px;
	--baseLineHeight: 30px;
	--smLineHeight: 24px;
	--baseSpacing: 35px;
	--smSpacing: 20px;
	--wrapperWidth: 1000px;
	--baseRadius: 3px;
	--baseAnimationSpeed: 200ms;
	--activeAnimationSpeed: 100ms;
	--bodyColor: #fff;
	--txtPrimaryColor: #2f3337;
	--txtHintColor: #787e87;
	--primaryColor: #2f3337;
	--successColor: #2cb67d;
	--dangerColor: #ef4565;
	--warningColor: #ff8e3c;
}
:focus-visible {
	outline-color: var(--primaryColor);
	outline-style: solid;
}
html,
body {
	line-height: var(--baseLineHeight);
	font-family: var(--baseFontFamily);
	font-size: var(--baseFontSize);
	color: var(--txtPrimaryColor);
	background: var(--bodyColor);
	min-width: 100%;
	width: 100%;
	max-width: 100%;
	min-height: 100%;
	height: 100%;
	max-height: 100%;
}
p,
.block,
.content {
	display: block;
	width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 var(--smSpacing);
	font-weight: normal;
}
h1 {
	font-size: 24px;
	line-height: 30px;
}
h2 {
	font-size: 22px;
	line-height: 28px;
}
h3 {
	font-size: 20px;
	line-height: 24px;
}
h4 {
	font-size: 18px;
	line-height: 24px;
}
h5 {
	font-size: 17px;
	line-height: 24px;
}
h6 {
	font-size: 16px;
	line-height: 22px;
}
p,
pre {
	margin: var(--smSpacing) 0;
	font-size: clamp(15px, 1.5vw, 18px);
}
a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	color: var(--txtPrimaryColor);
	text-decoration: none;
}
