header {
  background: var(--bg2);
  color: var(--text);
  padding: 10px;
  user-select: none;
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  height: 23px;
}

header a {
  color: var(--text);
  text-decoration: none;
  font-size: 19px;
  font-weight: 100;
}

header .links a {
  margin: 0 20px;
}

header .center {
  font-size: 19px;
  text-align: center;
  font-weight: 900;
}

header .right {
  text-align: right;
}

header .right .copy {
  position: relative;
  top: 2px;
}
header .socials, header .links {
  display: inline;
}
header .socials img {
  margin: 0 8px;
}

header .menu {
  display: none;
}

@media only screen and (max-width: 900px) {
  header .links, .mobile-hidden {
    display: none;
  }
  header .menu, header .menu::before, header .menu::after {
    display: block;
  }
}