.navbar {
  background-color: rgb(179,25,66);
  color: white;
}

.toggle-button {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
  display: none;
}

.collapsible-content {
  display: none;
  flex-direction: column;
  background-color: #172238;
  transition: max-height 0.3s ease-out;
}

.navbar-menu {
  list-style-type: none;
}

.navbar-menu a {
  color: white;
  text-decoration: none;
}

.nav-item-custom {
  color: aliceblue;
}

.nav-item-custom:hover {
  background-color: rgb(70, 70, 68);
}

@media (max-width: 768px) {
  .navbar-row {
    flex-direction: column;
  }
}

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

@media (max-width: 768px) {
  .collapsible-content {
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .collapsible-content.active {
    max-height: 100%;
  }
}

@media (min-width: 769px) {
  .navbar-row {
    flex-direction: row;
  }
}

@media (min-width: 769px) {
  .collapsible-content {
    display: flex;
    flex-direction: row;
    max-height: none;
  }
}

@media (min-width: 769px) {
  .navbar-menu {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
  }
}

