@font-face {
	font-family: "Nunito";
	src: url("./Nunito.ttf") format("truetype");
}

@font-face {
	font-family: "Nunito Italic";
	src: url("./Nunito-Italic.ttf") format("truetype");
}

@font-face {
	font-family: "Inconsolata";
	src: url("./Inconsolata.ttf") format("truetype");
}

:root {
	font-family: "Nunito", sans-serif;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scrollbar-width: thin;
	scrollbar-color: #232326 #090909;
	background: #000;
	color: #fff;
}



* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Nunito", sans-serif;
	letter-spacing: 1px;
	line-height: 1.2em;
}



body {
	margin: 0;
	padding: 2em 5%;
	min-height: 100%;
	width: 100%;
	font-size: 16px;
	font-family: "Nunito", sans-serif;
}

h1, h2, h3, h4 {
	margin-bottom: 1em;
}
p {
	margin-bottom: 0.8em;
}

ul {
	list-style-type: none;
	margin: 1em 0
}
li:before {
	content: '— ';
}
.unstyled li:before {
	content: '';
}
li {
	margin-bottom: 0.4em;
}
i {
	font-family: "Nunito Italic", sans-serif;
}

hr {
	height: 1px;
	border: 0;
	background-color: #555;
	display: block;
	margin: 2em 0;
}

#content {
	max-width: 600px;
	margin: 0 auto;
}

.code {
	background-color: #222;
	margin: 1em;
	padding: 1em;
	font-size: 0.8em;
	white-space-collapse: break-spaces;
	color: #d4d4d4;
	border-radius: 8px;
	overflow-x: auto;
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
	line-height: 1.5;
	border: 1px solid #333;
	white-space: pre-wrap;
	word-wrap: break-word;
}
code {
	font-family: "Inconsolata", monospace;
	line-height: 1em;
	padding: 0.2em 0.4em;
	border-radius: 4px;
	font-size: 0.9em;
	font-weight: 600;
}

table {
	margin: 1em 0;
	border-collapse: collapse;
	width: 100%;
}
th {
	background: #666;
	border: 1px solid #ccc;
	text-align: center;
}
td {
	border: 1px solid #999;
}
td, th {
	padding: 0.2em 0.4em;
	vertical-align: middle;
}

@media screen and (max-width: 1000px) {
	table {
		font-size: 13px;
	}
}
