:root {
  --bg: #e5e4d7;
  --text: #1a1a1a;
  --muted: #5a5a58;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
}

.root-placeholder {
  text-align: center;
  padding: 2rem;
}

.root-placeholder__brand {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  text-transform: lowercase;
}

.root-placeholder__note {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.root-placeholder__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.root-placeholder__links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
}

.root-placeholder__links a:hover {
  opacity: 0.7;
}
