html *, * {
	box-sizing: border-box;
}

body {
	font-family: Arial;
	background: #606060;
	padding-bottom: 200px;
	overflow-y: scroll;
}

a, a:visited {
	color: #7be;
	text-decoration: none;
}
a:hover {
	color: #aef;
}

#wrapper {
	width: 100%;
	max-width: 1000px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
#brand {
	display: block;
	text-decoration: none;
	width: 250px;
}
#brand h1 {
	display: inline-block;
	margin-top: 15px;
	margin-bottom: 0px;
	color: #fff;
}
#brand h2 {
	display: inline-block;
	margin-top: 3px;
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: normal;
	color: #ddd;
	letter-spacing: 3px;
}

#back-link {
	padding-bottom: 10px;
	font-size: 17px;
}

article {
	background: #fff;
	border-top: 5px solid #8b5;
	padding: 25px;
	line-height: 20px;
	font-size: 14px;
	word-break: break-word;
}
article h1 {
	font-size: 25px;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 5px;
	line-height: 30px;
}
article h1 a,
article h1 a:visited {
	color: #222;
	text-decoration: none;
}
article h1 a:hover {
	color: #8b5;
}
article .description {
	font-size: 12px;
	color: #888;
	margin-bottom: 10px;
	border-bottom: 1px solid #eee;
}
article code {
	font-family: "Courier New";
}
article pre code.hljs {
	border: 1px solid #ccc;
	padding: 5px;
	background-color: #f8f8f8;
	font-size: 13px;
	line-height: normal;
}

article#not-found {
	font-size: 20px;
	padding-top: 50px;
	padding-bottom: 50px;
}


footer {
	padding: 30px 0px;
	font-size: 13px;
	text-align: center;
	color: #888;
}


@media all and (max-device-width: 500px)
{
	article {
		padding: 10px;
	}
}
