:root {
  color-scheme: dark;
  background: #111111;
  color: #e8c872;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at center, #19170f 0, #111111 52%);
}

.home {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
}

.wordmark {
  margin: 0;
  color: #e8c872;
  font: 400 clamp(6rem, 22vw, 13rem) / 0.85 "GFS Didot", serif;
  text-shadow: 0 0 2.5rem rgb(232 200 114 / 15%);
}

.tagline {
  margin: 0;
  color: #cbbd95;
  font: 400 clamp(1.1rem, 3vw, 1.5rem) / 1.4 "EB Garamond", serif;
  letter-spacing: 0.02em;
}

.social-links {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #e8c872;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.social-link img {
  display: block;
  width: 28px;
  height: 28px;
  opacity: 0.8;
}

.social-link:hover,
.social-link:focus-visible {
  background-color: rgb(232 200 114 / 8%);
  border-color: rgb(232 200 114 / 20%);
}

.social-link:hover img,
.social-link:focus-visible img {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .social-link {
    transition: none;
  }
}

.social-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
