@font-face {
	font-family: 'cascadiacode';
	src: url('cascadiacode.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}

* {
	font-family: 'cascadiacode';
	color: #e5e7eb;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	background-color: #020000;
}

a,
.button {
	text-decoration: none;
}

a {
	display: inline-block;
	color: #e5e7eb;
}

a:hover {
	color: #020000;
	background-color: #e5e7eb;
}

header {
    display: flex;
	align-items: baseline;
	gap: 20px;
	padding: 10px;
	border-bottom: 1px solid #e5e7eb;
	background-color: #252525;
}

h1 {
	margin-right: auto;
	font-size: 22px;
}

h2 {
	font-size: 20px;
}

main {
	background-color: #020000;
	padding: 10px;
}

pre {
	margin: 0;
	white-space: pre;
}

.header-block {
	overflow: hidden;
}

.button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	float: right;
	width: 100px;
	height: 40px;
	margin: 0 0 5px 10px;
	background-color: #e5e7eb;
	color: #020000;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}

pre {
  line-height: 1;
  letter-spacing: 0;
}

.img-fluid {
  max-width: 1920px;
  width: 100%;
  height: auto;
  display: block;
}