.normalNavbar {
}

.navbarPages {
  text-align: center;
}

.normalNavbar h1 {
  font-size: 175%;
  display: inline-block;
  margin-left: 1rem;
  margin-right: 1rem;
  transition: all 0.5s;
  color: var(--stac);
}

.normalNavbar h1::after {
  content: "";
  background-color: var(--ac);
  margin-top: .25rem;
  width: 0%;
  height: .3rem;
  display: block;
  margin-left: 50%;
  transition: 0.5s;
  transform: translate(-50%, 0);
  border-radius: 2rem;
}

.normalNavbar h1:hover {
  color: var(--tc);
  font-size: 200%;
}

.normalNavbar h1:hover::after {
  width: 25%;
}

.navbarPages .navbarPageActive {
  color: var(--tc);
  font-size: 215%;
}

.navbarPages .navbarPageActive:hover {
  font-size: 215%;
}

.navbarPages .navbarPageActive::after {
  content: "";
  background-color: var(--ac);
  margin-top: .25rem;
  width: 25%;
  height: .3rem;
  display: block;
  margin-left: 50%;
  transition: 0.5s;
  transform: translate(-50%, 0);
  border-radius: 2rem;
}

/*Dropdown*/
.dropdownMenuButton {
  float: left;
  cursor: pointer;
  margin: 1rem;
}

.dropdownMenuButton:hover .dropdownMenuButtonText::after {
  width: 25%;
}

.dropdownMenuButton:hover .dropdownMenuButtonTextActive {
  color: var(--tc);
}

.dropdownMenuButton * {
  transition: all 0.4s;
}

.dropdownIcon {
  width: 4rem;
  display: inline-block;
  float: left;
}

.dropdownMenuButtonText {
  float: left;
  display: none;
  margin-left: 1rem;
  margin-right: 1rem;
}

.dropdownMenuButtonText::after {
  content: "";
  background-color: var(--ac);
  margin-top: .25rem;
  width: 0%;
  height: .3rem;
  display: block;
  margin-left: 50%;
  transition: 0.5s;
  transform: translate(-50%, 0);
  border-radius: 2rem;
}

.dropdownMenuButtonText:hover {
  color: var(--tc);
}

.dropdownMenuButtonText:hover::after {
  width: 25%;
}

.dropdownMenuButtonTextActive {
  color: var(--ac);
}

.dropdownMenuButtonTextActive::after {
  content: "";
  background-color: var(--ac);
  margin-top: .25rem;
  width: 50%;
  height: .3rem;
  display: block;
  margin-left: 50%;
  transition: 0.5s;
  transform: translate(-50%, 0);
  border-radius: 2rem;
}

.dropdownMenu {
  background-color: var(--nbbc);
  left: 0;
  position: absolute;
  display: none;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  transform: translateY(0);
}

.dropdownLang {
  padding: 0;
  margin: 0;
}

.dropdownLang h2 {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-top: 0;
  margin-bottom: 0;
  transition: color 0.4s;
  cursor: pointer;
}

.dropdownLang h2:hover {
  color: var(--ac);
}

.activeLang {
  cursor: default;
  color: var(--ac);
}

/*Theme change button*/
.dropdownThemeChange {
  text-align: center;
  max-width: 100%;
}

.dropdownThemeChange img {
  width: 3rem;
  margin: 0;
  transition: transform 1s;
}

.dropdownThemeChangeHover:hover {
  transform: rotate(360deg);
}

/*Screen size differences*/
@media screen and (min-width: 1920px) {
  .dropdownMenuButtonText {
    display: inline-block;
  }

  .navbarPages {
    text-align: right;
  }
}

@media screen and (max-width: 1600px) {
  .normalNavbar {
    display: none;
  }
}
