:root {
	--content-width: 1200px;
	--content-padding: 0px 20px;
	--content-mobile-padding: 0px 10px;
}
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
body {
	font-family:
		Open Sans,
		sans-serif;
	background-color: #f7f8f9;
	color: #1c204f;
}
p {
	margin-bottom: 20px;
}
h1,
h2,
h3 {
	margin-top: 40px;
	margin-bottom: 10px;
}
h2 {
	margin-top: 20px;
	padding: 10px 0;
}
ol {
	margin-left: 20px;
}
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;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
	max-width: 900px;
}
table tbody td {
	min-width: 175px;
}
table tbody td,
table thead th {
	border-bottom: 1px solid #eee;
	padding: 10px 20px;
}
table thead th {
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: unset;
}
footer {
	background-color: #10141e;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	color: #fff;
}
code {
	font-family:
		Consolas,
		courier new;
	color: crimson;
	background-color: #f1f1f1;
	padding: 2px;
	font-size: 105%;
}
.noMinWidth tbody td,
.noMinWidth thead th {
	min-width: 0;
}
.largeTable {
	font-size: 14px;
	border-collapse: collapse;
	width: 100%;
}
.largeTable td {
	white-space: nowrap;
}
@media (max-width: 510px) {
	table tbody td,
	table thead th {
		padding: 10px;
		min-width: 100px;
	}
	table {
		font-size: 14px;
	}
	h1,
	h2,
	h3 {
		margin-top: 30px;
	}
	.largeTable {
		font-size: 12px;
	}
	.largeTable td,
	.largeTable th {
		padding: 4px;
	}
}
