.site-home {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  transition: border-color .2s, color .2s, transform .2s;
}

.site-home:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.site-home svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  nav .site-home {
    display: grid;
    margin-right: 12px;
  }
}

.download-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
