*,
*:after,
*:before {
	box-sizing: border-box;
}
body {
	overflow-x: hidden;
	font-family: 'Fira Mono', monospace;
	font-weight: 400;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	background: #545953;
	color: #767980;
	padding: 32px 50px;
}
.container {
	max-width: 1105px;
	margin: 0 auto;
	padding: 2em;
	border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.container p {
	font-size: 0.9em;
}
.container ol {
	font-size: 0.9em;
	list-style-type: disc;
}
.container table {
	width: 100%;
	margin-bottom: 1em;
	table-layout: fixed;
	font-size: 0.9em;
	text-align: left;
}
.container table td:nth-child(1) {
	width: 120px;
}
.container a {
	text-decoration: none;
	outline: none;
	color: #767980;
	border-bottom: 1px dashed #767980;
	word-wrap: break-word;
}
.bold--text {
	font-weight: 500;
}
.center--text {
	text-align: center;
}
.right--text {
	text-align: right;
}
@media screen and (max-width: 640px) {
	body {
		padding: 20px;
	}
	.container {
		padding: 1.2em;
	}	
}