/* CSS Document */
.dropbtn {
  background-color: #12101B;
  font-family: verdana;
 font-weight: 400;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #808080;
  color: red;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,20);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom-style: solid;  
  border-color: white;
}

.dropdown-content a:hover {
	background-color: #808080;
	color: red;
	font-weight: 600;
}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #808080;}

#carousel {
	position: absolute;
	width: 980px;
	height: 380px;
	top: 100px;
	left: 100px;
	display: hidden;
}