:root {
  color-scheme: light;
  :root {
    color-scheme: light;
    --bg: #f4efe6;
    --text: #161616;
  }

  * {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    min-height: 100%;
  }

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

  .hero {
    padding: 24px;
  }

  h1 {
    margin: 0;
    font-size: clamp(4rem, 18vw, 12rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .card-body,
  .feature-card,
  .steps li,
  .callout {
    padding: 20px;
  }
}