.site-description,
.site-title a,
.site-title a:hover {
  color: #000;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float: left;
}

li a {
  color: black;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

li:hover, li div:hover {
  background-color: #f2f2f2;
  border-radius: 10px;
}
.navwrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.navwrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: 0px;
}
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  background-color: inherit;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #f2f2f2;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9999;
  border-radius: 10px;
  overflow: visible;
}
.dropdown-content p {
  margin: 0px;
  background-color: #bbb;
  border-radius: 10px;
}
.dropdown-content a {
  float: none;
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
  border-radius: 10px;
}

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