body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #d6eff4;
}
.navbar{
	position: fixed;
	width : 100%;
	z-index:9999;
	background: #212121;
	margin: 0;
	top: 0px;
	padding: 0px 0px;
}
 
.logo{
	font-size: 14pt;
	font-weight: bold;
	text-decoration: none;
	color: white;
}
 
.container{
	z-index:9999;
	display: flex;
	
	justify-content: space-between;
	align-items: center;
}
 
.tombol{
	display: none;
	color: white;
	font-size: 14pt;			
}
 
.tombol:hover{
	cursor: pointer;
}
 
 
.menu{
	z-index:9999;
	margin: 0;
	display: flex;
	list-style: none;
	padding: 0;			
}
.dropdown-menu{
background: #212121;


}
.menu li{
	z-index:9999;
	padding-left: 0;
	margin-right: 10px;
}
 
.menu li a{
	padding:10px;
	color: white;
	text-decoration: none;
	display: inline-block;
}
 
 
@media screen and (max-width: 768px) {
	.menu {
		display: none;
	}
 
	.menu.aktif{
		display:inline-block;
		position: absolute;
		top: 50px;
		background: #212121;
		padding: 10px 20px;
		right: 0;
		left: 0;
		z-index:9999;
	}
 
	.menu.aktif li a{
		padding: 10px;
		display: inline-block !important;
	}
 
	.tombol {
		display: block;
	}
}