:root {
  --red: #ea4e52;
  --ink: #1a1714;
  --text: #3d3834;
  --muted: #6b635a;
  --bg: #faf8f6;
  --max: 36rem;
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

.note {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.note img.logo {
  display: block;
  height: 2.5rem;
  width: auto;
  margin-bottom: 3rem;
}

.note h1 {
  margin: 0 0 1.75rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.note h1 span {
  display: block;
}

.note h1 em {
  font-style: normal;
  color: var(--red);
}

.note p {
  margin: 0 0 1.25rem;
}

.note p:last-of-type {
  margin-bottom: 0;
}

.note .signoff {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  color: var(--ink);
}

.note .signoff img {
  width: 12rem;
  height: auto;
  flex-shrink: 0;
}

.note .signoff span {
  margin: 0;
}

.note .meta {
  margin-top: 3.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
}

.note .meta a {
  color: var(--muted);
  text-decoration: none;
}

.note .meta a:hover {
  color: var(--red);
}

@media (max-width: 600px) {
  .note {
    padding-top: 2.5rem;
  }
}
