html {
	background-color: #2b2b2b;
	font-family: "IBM Plex Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
}

p,
li,
a {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 1px;
	color: #eaeaea;
	transition: color 0.2s ease;
}

a:hover {
	color: #ffbf00;
}

nav ul {
	background-color: #333333;
	border-bottom: 2px solid #444444;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: stretch;
	gap: 30px;
	height: 80px;
	width: 100%;
	box-sizing: border-box;
}

nav ul::after {
	content: ">_";
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	color: #ffbf00;
	border-left: 2px solid #444444;
	font-family: "IBM Plex Mono", monospace;
	font-weight: 700;
	font-size: 20px;
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	flex-basis: auto;
	padding: 0;
}

nav ul > li {
	display: flex;
	align-items: center;
}

nav ul > li:first-child {
	flex-basis: 20%;
	flex-shrink: 0;
}

nav ul > li:last-child {
	margin-right: 0;
}

nav ul img {
	display: block;
	width: 100%;
	max-width: 300px;
	height: auto;
}

nav ul > li > a {
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	padding: 10px 0;
}

nav ul > li > a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2ch;
	height: 2px;
	background-color: #ffbf00;
	opacity: 0;
	transition: opacity 0.2s ease;
}

nav ul > li > a:hover::after {
	opacity: 1;
}

.logo-link {
	display: block;
	width: 100%;
}

.logo-link::after {
	display: none !important;
}

.logo-link:hover {
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

main {
	flex: 1;
	padding: 40px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

h1 > img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

h2 {
	display: flex;
	align-items: center;
	width: 100%;
	color: #ffbf00;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 1px 1px 1px black;
}

h2::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #ffbf00;
	margin-left: 20px;
}

h3 {
	color: #ffbf00;
}

footer {
	padding: 40px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

footer table {
	background-color: #333333;
	width: 100%;
	table-layout: fixed;
	border: 2px solid #444444;
	border-collapse: collapse;
	font-family: "IBM Plex Mono", monospace;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

footer table thead {
	color: #a0a0a0;
}

footer table tbody {
	color: #ffbf00;
}

footer table th,
footer table td {
	width: 25%;
	padding-left: 20px;
	padding-right: 20px;
	text-align: left;
}

footer table th:not(:first-child),
footer table td:not(:first-child) {
	border-left: 2px solid #444444;
}

footer table th {
	padding-top: 20px;
}

footer table td {
	padding-bottom: 20px;
}
