.navbar {
  overflow: visible;
  position: fixed;
  top: 0;
  background-color: #1c1c1c;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  height: 55px;
  z-index: 1000;
}
 
.buttons {
  margin-right: 40px;
  display: flex;
  align-items: center;
}

.buttons a img {
  width: 40px;
  height: auto;
}

.navbar a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  transition: 0.5s;
}

.logo {
  display: flex;
  align-items: center;
  color: white;
  font-size: 20px;
  padding-left: 20px;
}

.logo-img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}

.logo-text {
  font-size: 18px;
  color: #f2f2f2;
}

.navbar a:hover {
  color: pink;
}

.dropdown, .affbtn {
  position: relative;
  display: inline-block;
}

.dropbtn, .affdown {
  font-family: 'Oswald', sans-serif;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-color: #1c1c1c;
}

.dropdown-content, .aff-content {
  display: none;
  position: absolute;
  color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1002;
  padding: 10px 0;
  background: #222;
}

.dropdown-content a, .aff-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.dropdown-content a img, .aff-content a img {
  margin-left: 10px;
  width: 20px;
  height: 20px;
}

.dropdown:hover .dropdown-content, .affbtn:hover .aff-content {
  display: block;
}

.current-page {
  color: #ccc;
  background-color: #CBC3E3;
  pointer-events: none;
}

.current-page:hover {
  background-color: #CBC3E3;
  color: #ccc;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-family: 'Russo One', sans-serif;
}