nav {
  margin-top: 1vh;
  margin-left: 5vw;
  margin-right: 5vw;
  align-self: center;
  border-radius: 12px;
  border: 1px #d4d4d4 solid;
}

.navbar {
  background-color: #e9e9e9 !important;
}

.nav-link {
  font-size: 18px;
}

.icons {
  flex-direction: row;
}
.icons img {
  width: 40px !important;
}
.icons li {
  padding: 0 5px 0 5px;
}

.icons img:hover {
  transform: scale(1.03);
}

.nav-link.active {
  border-bottom: 1px solid rgba(0, 0, 0, 0.179);
  transition: border-bottom-width 0.1s ease-in-out, border-color 0.1s ease-in-out;
}

.nav-link.active {
  border-bottom: 1px solid rgba(0, 0, 0, 0.179);
  animation: slide-in 0.4s ease-in-out forwards;
}

@keyframes slide-in {
  from {
    width: 0;
    border-bottom-width: 0;
  }
  to {
    width: 100%;
    border-bottom-width: 1px;
  }
}/*# sourceMappingURL=navbar.css.map */