header { 
	font-size: 96px;
	font-weight: bold;
	text-align: center;
	}	
body {
	background-color: black;
	color: white;
	line-height: 1.5;
    max-width: 1000px;
    width: 100%;
    margin: auto;
}
.navbar {
	overflow: hidden;
	background-color: #52057B;
	font-family: Arial;
}
.navbar a{
	float: left;
	font-size: 16px;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}
.dropdown {
	float: left;
	overflow: hidden;
}
.dropdown .navheader {
	font-size: 16px;
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}
.navbar a:hover, .dropdown:hover .navheader {
	background-color: #BC6FF1;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #52057B;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 100;
}
.dropdown-content a {
	float: none;
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left
}
.dropdown-content a:hover {
	background-color: #BC6FF1;
}
.dropdown:hover .dropdown-content {
	display: block;
}
code {
    background: #300A24;
    color: #E9DEE4;
	font-family: monospace,serif;
	font-size: 14px;
}
pre {
	background: #300A24;
	color: #666;
	font-family: monospace;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre-wrap;
	word-wrap: break-word;
}
span.title {
	background-color: #BC6FF1;
	color: white;
	display: block;
	font-size: 18px;
	max-width: 100%;
}
