:root {
  --bg: #f4f4f4;
  --text: #000000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-color: var(--bg);
  background-image: url('background.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  padding: 24px;
}

.card {
  max-width: 700px;
  width: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 15px 15px rgba(0, 0, 0, 1.0);
  border: 2px solid #000;
  padding: 48px 32px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 10vw, 4rem);
  /* font-size: 3rem; */
  font-weight: bolder;
  line-height: .7;
  text-shadow: 3px 3px #B7E51B;
}

/* Tighten vertical spacing for stacked headings inside the card */
.card h1 {
  margin: 0;
  line-height: 1;
  display: block;
  font-weight: 900;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  letter-spacing: 0.02em;
}

.card h1 + h1 {
  margin-top: 0.15rem;
}

p {
  margin: 0 auto;
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
}

/* Smaller note style for the closing paragraph */
.small-note {
  font-size: 0.7rem;
  line-height: 1.4;
  color: #000000;
  max-width: 520px;
  margin: 1rem auto 0;
}

/* Center lists inside the card (both bullets and text) */
.card {
  text-align: center;
}

.card h2 {
  margin: 0 0 0.25rem;
}

.card ul {
  display: inline-block;
  padding: 0;
  margin: 0.25rem 0 1rem;
  list-style-position: inside;
  text-align: center;
}

.card ul li {
  text-align: center;
  margin: 0.25rem 0;
}

.divider {
  width: 140px;
  height: 2px;
  background-color: #000000;
  border: none;
  display: block;
}
