html { 
  background: white; 
}

#top-nav {
	display: none;
}

#content {
	position:static;
	top: 0px;
	bottom: 0px;
	width: 100%;
}

#content .container {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	min-height: 500px;
	max-height: 100%;
	background-color: rgba(20,20,20,0.90);
	color: #ffffff;
	
	padding: 25px 50px;
	
	overflow: auto;
}

/* only display footer on big enough screens */
#footer {
	color: #fff;
	padding: 10px 25px;
	display: none;
}
#bottom {
	height: 50px;
}

@media (min-width: 768px) {
	#content {
		top: 150px;
	}
	#content .container {
		max-width: 50%;
	}
	#footer {
		display: block;
	}
}


code, pre {
	background-color: rgba(50,50,50,0.75);
	color: #ffdddd;
}

a:link, a:visited {
	color: #59af15;
}
a:hover, a:active {
	color: #59af15;
}
