.navBg {
  width: 100vw;
  height: var(--nav-height);
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
}

.navCon {
  width: 100vw;
  height: var(--nav-height);
  position: fixed;
  top: 0;
  left: 0;
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.navBtnCon {
  display: flex;
  gap: calc(var(--nav-height) / 5);
  flex-direction: row;
  align-items: center;
  z-index: 2;
}

.navBtn {
  border-style: solid;
  /* border-radius: 0.7rem; */
  border-color: transparent;
  width: fit-content;
  height: calc(var(--nav-height) * 0.3);
  display: block;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--nav-height) * 0.2);
  font-family: var(--font-mono);
  font-weight: 400;
  padding: 0.8rem 0.6rem;
  margin: 0 0.2rem;
  color: var(--col-text);

}

.navBtn:hover {
  background-color: #d9d9d9;
  /* backdrop-filter: invert(10%); */
}

.navTogBtn {
  display: none;
}

@media only screen and (max-width: 768px) {
  .navBtn {
    font-size: 1rem;
  }
  .navBtnCon {
    gap: 0.5rem;
  }
}
