.scrollspy-nav {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: sticky;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
}

.scrollspy-nav .scrollspy-link {
  text-decoration: none;
  color: #333;
  font-family: sans-serif;
  transition: 0.3s ease;
  font-weight: bold;
  margin: 0px 10px;
  padding: 0px 5px;
  cursor: pointer;
}

.scrollspy-nav .scrollspy-link:hover {
  color: #000;
}

.scrollspy-nav .scrollspy-indicator {
  position: absolute;
  height: 3px;
  width: 0;
  background: red;
  bottom: 0;
  left: 0;
  transition: width 0.3s, left 0.1s;
}

.scrollspy-section
{
  display: inline-block;
}

