.dropdown {
position: relative;
display: inline-block;
}
.dropbtn {
background-color: gray; /* lightblue */
color: white;
/*padding: 16px;*/
padding: 0px;
/*font-size: 16px;*/
font-size: 6px;
font-family: 'Arial',sans-serif; /*font type*/
color: yellow; /*set initial dropdown to yellow */
border: none;
cursor: pointer;
}
.dropdown-content {
display: none; /* Hidden by default */
position: absolute;
background-color: silver;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
/*padding: 12px 16px;*/
padding:8px 16px;
text-decoration: none;
display: block;
font-family: 'Arial',sans-serif; /*font type*/
color: darkblue; /*set initial dropdown to darkblue */
}
.dropdown-content a:hover {
background-color: yellow;
}
.dropdown:hover .dropdown-content {
display: block; /* Show the dropdown menu on hover */
}