:root {
  --navbar-height: 80px;
}

.navbar {
  background-color: #fff;

  box-shadow: 0 5px 10px #0008;

  padding: 10px 0;
}

.navbar a,
.navbar a:hover {
  color: black;
  line-height: 1;
}

.navbar-spacer {
  min-height: var(--navbar-height);
}

.target-offset {
  height: var(--navbar-height);
  top: calc( -1 * var(--navbar-height));
  position: absolute;
}

.navbar-brand {
  font-size: 1.4rem;
  padding: 0;
}

.navbar-brand img {
  margin-right: 10px;
}

.collapse {
  flex-direction: row-reverse;
}

.navbar-toggler {
  border: none;
}

.active {
  text-decoration: underline;
}

