/** code by webdevtrick ( https://webdevtrick.com ) **/
body {
	background: #212121;
	font-size:10px;
	line-height: standard;
	color: #000000;
	word-wrap:break-word !important;
    font-family: 'Trebuchet ms', sans-serif;
	margin: 0;
	padding: 0;
}
h1 {
	font-size: 15px;
	text-align: center;
	color: #ffff00;
	margin-top: 100px;
    font-family: 'Russo One', sans-serif;
	}
	
h1 span {
	color: #0000ff;
}
#container {
	margin: 0 auto;
}

nav {
	margin: 10px 0;
	background-color: #0000ff;
}
nav ul {
	padding: 0;
        margin: 0;
	list-style: none;
	position: relative;
}	
nav ul li {
	display:inline-block;
	background-color: #0000ff;
	}
nav a {
	display:block;
	padding:0 10px;	
	color:#ffff00;
	font-size:14px;
	line-height: 26px;
	text-decoration:none;
}
nav a:hover { 
	background-color: #ff0000; 
}
nav ul ul {
	display: none;
	position: absolute; 
	top: 26px; 	
}	
nav ul li:hover > ul {
	display:inherit;
}	
nav ul ul li {
	width:200px;
	float:none;
	display:list-item;
	position: relative;
}
nav ul ul ul li {
	position: relative;
	top:-45px;
	left:200px;
}
nav ul ul li {
	border: 1px solid yellow;
}	
li > a:after { content:  ' ▼'; }
li > a:only-child:after { content: ''; }