:root {
	--content-width: 1200px;
	--content-padding: 0px 20px;
	--content-mobile-padding: 0px 10px;
}
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
body {
	font-family: Muller, sans-serif;
	background-color: #002319;
	color: #fff;
}
p {
	margin-bottom: 20px;
}
h1,
h2,
h3 {
	margin: 10px 0;
}
h2 {
	margin-top: 20px;
	padding: 10px 0;
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.25);
}
h2,
h3 {
	text-transform: uppercase;
}
ol {
	margin-left: 20px;
	max-width: 800px;
}
ol li,
ul li {
	margin-bottom: 10px;
}
ul {
	margin: 0 0 20px 20px;
}
body,
html {
	max-width: 100vw;
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
table {
	margin-bottom: 20px;
	border-radius: 5px;
	background-color: #000000;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
	max-width: 900px;
}
thead {
	border-bottom: 1px solid #8b8b94;
}
table thead th {
	text-transform: uppercase;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}
table tbody td {
	width: 50%;
	border-bottom: 1px solid #252536;
	padding: 10px 20px;
}
footer {
	background-color: #2f2f2f;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 0;
}
