/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


  {
padding:0;
margin:0;
box-sizing: border-box;
  }


body {
  background-color: darkgrey;
  color: black;
  font-family:sans-serif;
  }
  
.menu-bar {
  background: rgb(0,100,0);
	text-align: center;
}

.menu-bar ul
{
	Display: inline-flex;
list-style: none;
color: #fff;
}

.menu-bar ul li
{
	width: 120px;
	margin: 15px;
  padding: 15px;
}

.menu-bar ul li a
{
	text-decoration: none;
	color: #fff;

}
.active, .menu-bar ul li:hover
{
	background: #2bab0d;
	border-radius: 3px;
	
}

.scooby
{
display: none;

}
.menu-bar ul li:hover .scooby
{
display: block;
position: absolute; 
background: rgb(0,100,0);
margin-top: 15px;
margin-left: -15px;
}

.menu-bar ul li:hover .scooby ul
{
display: block;
margin:10px;
}

.menu-bar ul li:hover .scooby ul li
{
width: 150px;
padding: 10px;
border-bottom: 1px dotted #fff;
background: transparent;
border-radius: 0;
text-align:left;
}

.menu-bar ul li:hover .scooby ul li:last-child
{
border-bottom: none;
}

.menu-bar ul li:hover .scooby ul li a:hover
{
color: #b2ff00;
}

.sub-menu-2
{
display: none;
}

.hover-me:hover .submenu2
{
	position: absolute;
	display: block;
	margin-top:-40px;
	margin-left: 140px;
	background: rgb(0,100,0);
}
