/* Dropdown2 Button */
.dropbtn2 {
  background-color: #000080;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown2 {
  position: relative;
  display: inline-block;
}

/* Dropdown2 Content (Hidden by Default) */
 .dropdown2-content {
  display: none;
  position: absolute;
  background-color: #ff0000;
  min-width: 280px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 20px;
}

/* Links inside the dropdown2 */
 .dropdown2-content a {
  color: white;
  padding: 2px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown2 links on hover */
 .dropdown2-content a:hover {background-color: #000080;}

/* Show the dropdown menu on hover */
.dropdown2:hover .dropdown2-content {display: block;}

/* Change the background color of the dropdown2 button when the dropdown2 content is shown */
.dropdown2:hover .dropbtn2 {background-color: #0066FF;} 