header {
  box-sizing: border-box;
  border-radius: 20px;
}

.menu-link {
  color: black;
}

.menu-link.active {
  color: #1aa34a;
}

.truncate {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 2);
  min-width: 0;
}
