:root {
  --paper: #fff;
  --ink: #000;
  --muted: #8a8a8a;
  --sans: "Inter", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 17px;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 4.5rem 1.5rem 6rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  width: min(36rem, 100%);
}

header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.account {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.95rem;
  text-decoration: none;
}

.account svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.account:hover,
.account:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

h1 {
  margin: 2.75rem 0 0.7rem;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

li {
  margin: 0.35rem 0 0;
}

li:first-child {
  margin-top: 0;
}

li a {
  display: inline-flex;
  align-items: center;
  gap: 0.1em;
  margin-right: 0.5em;
  color: var(--ink);
  text-decoration: none;
}

li a .name {
  text-decoration: none;
}

li a svg {
  display: block;
  width: 0.85em;
  height: 0.85em;
  flex: none;
  color: var(--muted);
}

li a:hover .name,
li a:focus-visible .name {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
