.dropbtn {
  background-color: #f4f3f5;
  color: #645faa;
  padding: 13px 10px 10px 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: 'Comfortaa';
  font-weight: 300;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #645faa;
  border: none;
  color: #ffffff;
}

.dropdown-menu {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: auto;
  border: none;
  margin-top: 30px;
  margin-bottom: 30px;
}

.dropdown-content {
  color: #645faa;
  display: none;
  position: absolute;
  background-color: #ffffff;
  text-align: center;
  width: 100%;
  overflow: auto;
  z-index: 1;
  border: none;
  padding-top: 20px;
  padding-bottom: 30px;
}

.dropdown-content a {
  color: #645faa;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: 'Comfortaa';
  font-weight: 300;
  cursor: pointer;
}

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

.dropdown-menu a:hover {
  background-color: #7ac4d3;
  color: #ffffff;
}

.show {
  display: block;
}

