/*----------nav----------*/

nav {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.navbar {
  width: 300px;
  height: 50px;
  background-color: var(--bgcard);
  border-radius: 0 0 5px 5px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navbar-link {
  color: var(--link);
}

.navbar-link::before {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-link:hover {
  color: var(--linkhover);
}

.navbar-link:hover::before {
  background-color: var(--bghover);
}

/*----------pages----------*/

.navbar-button {
  width: 300px;
  height: 50px;
  color: var(--link);
  font-family: 'Montserrat-Medium';
  font-size: 18px;
  border-radius: 0 0 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-button:hover {
  color: var(--linkhover);
  background: var(--bghover);
}

.navbar-static {
  width: 300px;
  height: 50px;
  color: var(--linkhover);
  font-family: 'Montserrat-Light';
  font-size: 18px;
  background-color: var(--bghover);
  opacity: 0.9;
  border-radius: 0 0 5px 5px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
