body{
    background-color: cadetblue;
}
.topnav {
    background-color: #333;
    overflow: visible;
    display: flex;
    padding: 0 20px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.dropbtn{
    background-color: #4CAF50;
    color: white;
    padding: 14px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.dropcontent{
    display: none;
    background-color: #04AA6D;
    position: absolute;
    background-color: #e9e9e9;
    min-width: 30px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropcontent a {
    text-align: center;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 4px;
}
.dropcontent a:hover {
    background-color: #e0e0e0
    
}
.dropdown .dropbtn:hover{
    background-color: #f2f2f2;
    color: #333;
}
.dropdown:hover .dropcontent {
    display: block;
}
