html {
  height: 100%;
}
body {
  margin: 0;
  height: 100%;
}
#container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: wrap;
}
#topnav {
  width: 100%;
  background-color: #370541;
  overflow: wrap;
}
.topnav a {
  float: left;
  color: #f2f2f2;
  background-color: #450452;
  text-align: center;
  padding: 16px 16px;
  text-decoration: none;
  font-size: 16px;
  border: white solid 1.5px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1.2em;
}

/* Change the color of links on hover */
.topnav a:hover .dropdown:hover .dropbtn {
  background-color: #b89111;
  color: white;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #510086;
  color: white;
}
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  color: #f2f2f2;
  background-color: #450452;
  text-align: center;
  padding: 16px 16px;
  text-decoration: none;
  font-size: 16px;
  border: white solid 1.5px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1.2em;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #450452;
  min-width: fit-content;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-left: 2px;
  padding-left: 4px;
  padding-right: 4px;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 16px 4px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #200225;
}

.dropdown:hover .dropdown-content {
  display: block;
}