:root {
  --header-bg: #4c2615;
  --pro-pill-bg: rgb(162 114 95 / 40%);
  --font-ui: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: 40px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-ui);
}

header {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  height: 52px;
  padding-inline: var(--gutter);
  background: var(--header-bg);
  color: #fff;
}

header > a:first-child {
  display: flex;
  align-items: center;
  height: 100%;
  margin-inline-end: 12px;
  color: #fff;
}

header nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}

header nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding-inline: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

header nav a:hover {
  opacity: 0.85;
}

a[href="/pro"] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
  height: 25px;
  border-radius: 4px;
  background: var(--pro-pill-bg);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

nav[aria-label="Account"] button,
nav[aria-label="Account"] a[aria-label] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 52px;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
}
