/* Palette drawn from the printed save-the-date card */
:root {
  --paper: #f2ede7;
  --ink: #1d1f1a;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background-color: var(--paper);
  /* Layered gradients approximate the cotton-paper texture of the card */
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(214, 202, 186, 0.35), transparent 60%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.01) 0 1px, transparent 1px 4px);
  font-family: Georgia, serif;
  padding: clamp(1.25rem, 4vw, 3rem) 1.25rem;
}

main {
  width: 100%;
  max-width: 58rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card {
  width: min(100%, 46rem);
}

.card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow:
    0 1px 2px rgba(29, 31, 26, 0.12),
    0 12px 40px -12px rgba(29, 31, 26, 0.35);
}
