body {
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #faf8f5;
  color: #2c2c2c;
  font-size: clamp(14px, 1vw + 0.5rem, 20px);
  font-family: 'LXGW WenKai', 'STKaiti', 'KaiTi', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10vh;
  width: 100%;
}

figure {
  margin: 0;
}

figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background-color: #e8e4df;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hero {
  min-height: 40vh;
}

.quote {
  color: #6b6b6b;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
  padding-left: 1rem;
}

.quote p {
  font-size: clamp(0.875rem, 0.8vw + 0.5rem, 1.125rem);
  margin: 0;
}

.quote .author {
  font-size: clamp(0.75rem, 0.5vw + 0.5rem, 0.95rem);
  color: #999;
}

footer {
  padding: 2rem 0;
  text-align: center;
  margin-top: 3rem;
}


footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer a {
  color: #999;
  transition: color 0.2s;
  text-decoration: none;
  margin: 0 0.5rem;
  display: inline-flex;
  align-items: center;
}

footer a:hover {
  color: #2c2c2c;
}

footer .favicon-link {
  vertical-align: middle;
  opacity: 0.5;
  transition: opacity 0.2s;
}

footer a:hover .favicon-link {
  opacity: 1;
}

@media (max-width: 639px) {
  main {
    padding-top: 8vh;
  }

  .quote {
    margin-top: 1.5rem;
    text-align: center;
    padding-left: 0;
  }
}
