html{
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  padding: 20px 10px;
  background-color: var(--color-secudary);
  font-weight: bold;
  position: fixed;
  top: 0;
  width: 100%;
}
/* Style the header links */
.header a {
  float: left;
  color: var(--main-bg-color);
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  width: auto;
}
/* Change the background color on mouse-over */
.header a:hover{
  background-color: var(--main-bg-color);
  color: var(--color-secudary);
}
/* Style the active/current link*/
.header a.active {
  background-color: var(--main-bg-color);
  color: var(--color-secudary);
}
/* Float the link section to the right */
.header-right {
  display: flex;
  justify-content: center;
}