:root {
  color-scheme: light;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  color: #353a35;
  background: #f8f7f3;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  padding: 32px 24px;
  display: grid;
  place-items: center;
}

main {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.avatar {
  display: block;
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  border-radius: 8px;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.4;
}

.paren {
  color: #7b8c72;
  font-weight: 400;
}

.paren:first-child {
  margin-right: 0.18em;
}

.paren:last-child {
  margin-left: 0.18em;
}

.moon {
  margin-left: 0.12em;
  font-size: 0.78em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
  row-gap: 4px;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: #565d52;
  font-size: 12px;
  text-decoration: none;
  text-underline-offset: 5px;
}

.link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

a.link:hover {
  color: #344c2c;
  text-decoration: underline;
}

a.link:focus-visible {
  outline: 2px solid #657b58;
  outline-offset: 5px;
  border-radius: 2px;
}

@media (max-width: 380px) {
  nav {
    column-gap: 16px;
  }
}
