/* header.css */

header {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;

  position: sticky;
  top: 0;
  z-index: 1000;

  height: var(--header-h);
  max-height: var(--header-h);
  min-height: var(--header-h);

  width: auto;
  flex: 1;
  align-self: stretch;
  padding-left: 50px;
  padding-right: 50px;
}

nav {
  display: flex;
  justify-content: space-between;
  width: 100%;

  flex: 1;
}

nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 10;
  letter-spacing: 3px;
  font-size: large;

  width: 200px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.2s;
  text-align: center;

  border: 5px solid transparent;
  flex: 1;

  cursor: inherit;
}

nav a:hover, a:focus {
  text-decoration: none;
  text-shadow: 0 0 10px var(--c-accent);
  border: 5px solid var(--c-accent);
}

nav a.active {
  color: var(--c-ink);
  background-color: var(--c-accent);
}

.plus_user {
  color: var(--c-plus);
  text-shadow: 0 0 10px var(--c-plus);
}

.plus_user.active{
  color: var(--c-ink);
  background-color: var(--c-plus);
}

a.plus_user:hover, a.plus_user:focus{
  text-decoration: none;
  text-shadow: 0 0 10px var(--c-plus);
  border: 5px solid var(--c-plus);
}

.pro_user {
  color: var(--c-pro);
  text-shadow: 0 0 10px var(--c-pro);
}

.pro_user.active{
  color: var(--c-ink);
  background-color: var(--c-pro);
}

a.pro_user:hover, a.pro_user:focus{
  text-decoration: none;
  text-shadow: 0 0 10px var(--c-pro);
  border: 5px solid var(--c-pro);
}

.admin_user {
  color: var(--c-admin);
  text-shadow: 0 0 10px var(--c-admin);
}

.admin_user.active{
  color: var(--c-ink);
  background-color: var(--c-admin);
}

a.admin_user:hover, a.admin_user:focus{
  text-decoration: none;
  text-shadow: 0 0 10px var(--c-admin);
  border: 5px solid var(--c-admin);
}

.hid {
  display:none;
}
