header {
  width: 100vw;
  height: 50px;
  position: fixed;
  display: flex;
  background-color: var(--foreground-color);
  padding: 0px 8%;
  z-index: 999;
}

header .left,
header .center,
header .right {
  height: 100%;
  flex: 1;
}

header .left a {
  width: fit-content;
}

header .left a .logo {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  height: 100%;
}

header .left a .logo .icon {
  height: 100%;
}

header .left a .logo .icon img {
  height: 100%;
}

header .left a .logo span {
  font-weight: 700;
  font-size: 20px;
}

header .right {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: end;
}

header .right button {
  padding: 8px 16px;
  background-color: var(--elements-color);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: .15s background, .15s border;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

header .right button svg {
  width: 12px;
  height: 12px;
}

header .right button svg path {
  fill: var(--text-color);
}

header .right button:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

header .right button.download {
  border-color: var(--accent);
}


@media screen and (max-width: 450px) {
  header .left a .logo span {
    display: none;
  }
}
