.dropdown {
  display: inline-block;
  position: relative;
  align: center;
}
.dropdown-content {
  display: none;
  align: center;
  margin-left: 10px;
  position: absolute;
  width: 87%;
  overflow: auto;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  align: center;
  font-weight: bold;
  background-color: red;
  color: black;
  padding: 5px;
  text-decoration: none;
  border-radius: 10px;
}
.dropdown-content a:hover {
  color: pink;
  background-color: white;
  align: center;
}
