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

body {
  background-color: #111111;
  color: #d4d4d4;
  font-family: 'Shippori Mincho', serif;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

main {
  width: 100%;
  max-width: 400px;
}

.block {
  margin-bottom: 4rem;
}

.block--title {
  margin-bottom: 5rem;
}

h1 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #a0a0a0;
}

.link-primary {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #d4d4d4;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
  transition: opacity 0.4s ease;
}

.link-primary:hover {
  opacity: 0.6;
}

.subtext {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #707070;
}
