#navigation {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 188, 212, .9);
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* background-color: #333; */
  color: white;
}

.brand-name {
  font-size: 1.5rem;
  margin: .5rem;
  display: none;
}

.brand-name > p {
  color: #ffffff;
}

.navbar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  text-decoration: none;
  color: white;
  padding: 1rem;
  display: block;
}

.navbar-links li:hover {
  background-color: #20c9de;
}

.toggle-button {
  width: 30px;
  height: 20px;
  position: absolute;
  top: .45rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background-color: white;
  transition: all 0.3s ease;
}

.toggle-button.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.toggle-button.active .bar:nth-child(2) {
  opacity: 0; /* hide middle bar */
}

.toggle-button.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.current-page {
  text-decoration: underline;
}

@media(max-width: 768px) {
  .toggle-button {
    display: flex;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }

  .navbar-links ul li {
    text-align: center;
  }

  .navbar-links ul li a {
    padding: .5rem 1rem;
  }

  .navbar-links.active {
    display: flex;
  }

  .brand-name {
    display: block;
    font-size: 1.5rem !important;
  }
}

/* .navigation-bar {
  top: 0;
  z-index: 1;
  background-color: rgba(0, 188, 212, 0.9);
  position: sticky;
  font-size: 14px;
  color: white;
}

.navigation-bar__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.brand-name {
  font-size: 1.5rem;
  margin: .5rem;
  display: none;
}

.navigation-bar__links ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.navigation-bar__links li {
  list-style: none;
}

.navigation-bar__links li a {
  text-decoration: none;
  color: white;
  padding: 1rem;
  display: block;
}

.navigation-bar__links li:hover {
  background-color: #20c9de;
}

.toggle-button {
  position: absolute;
  top: .75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

.current-page {
  text-decoration: underline;
}

@media(max-width: 768px) {
  .toggle-button {
    display: flex;
  }

  .navigation-bar__links {
    display: none;
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navigation-bar__links ul {
    width: 100%;
    flex-direction: column;
  }

  .navigation-bar__links ul li {
    text-align: center;
  }

  .navigation-bar__links ul li a {
    padding: .5rem 1rem;
  }

  .navigation-bar__links.active {
    display: flex;
  }

  .brand-name {
    display: block;
  }
} */