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

:root {
  --bg: #f6eed9;
  --text-dark: #2c2825;
  --text-mid: #6b6560;
  --text-light: #9c9690;
  --font: 'Cormorant Garamond', Georgia, serif;
}

body {
  background: #ccc4b0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
  font-family: var(--font);
}

.card {
  background: var(--bg);
  width: 148mm;
  padding: 14mm 12mm;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.header {
  text-align: center;
}

.footer a {
  color: inherit;
  text-decoration: none;
}


