:root {
  --bg: #deeaf1;
  --primary: #5d6837;
  --text: #6c6747;
  --accent: #9b6181;
}

body {
  background: var(--bg);
  color: var(--text);
}

h1,
h2,
h3,
nav a,
.button {
  color: var(--primary);
}

a:hover,
.quote,
.memorial-date,
.highlight {
  color: var(--accent);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
  width: 100%;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 20px;
  line-height: 1.1;
}

.divider {
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 22px;
}

.description {
  font-size: 28px;
  line-height: 1.45;
  margin: 0 0 20px;
  max-width: 650px;
}

footer {
  /* background: #f3f3f3; */
  border-top: 1px solid #e0e0e0;
  padding: 18px 24px;
  font-size: 14px;
}

footer .footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

footer a {
  text-decoration: none;
  color: var(--accent);
}

footer a:hover {
  text-decoration: underline;
  color: var(--accent);
}

.hero-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto 22px;
  border-radius: 8px; /* optional but usually looks nice */
}

/* Tablet */
@media (max-width: 768px) {
  .container {
    padding-top: 24px;
  }

  h1 {
    font-size: 42px;
  }

  .description {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 20px 18px 0;
  }

  h1 {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .description {
    font-size: 18px;
    line-height: 1.5;
  }

  footer {
    font-size: 13px;
    padding: 16px 18px;
  }
}
