:root {
  --dark-text: #000536;
  --page: #fffcfb;
  --card: #e6e9ff;
  --coral: #2a38b9;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: var(--dark-text);
  background: var(--page);
}
.summary {
  text-align: center;
  margin-bottom: 4rem;
}
.summary h1 {
  margin: 0 0 1rem 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--coral);
}
.summary p {
  font-size: 1.2rem;
  margin: 0;
}
section {
  margin-bottom: 4rem;
  padding: 1.5rem 2rem;
  background: var(--card);
  color: var(--dark-text);
  border-radius: 12px;
  overflow: hidden;
}
section h2 {
  margin: -1.5rem -2rem 1.5rem -2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--coral);
  padding: 1rem 2rem;
  letter-spacing: 0.2rem;
}
.sample:not(:last-child) {
  margin-bottom: 2rem;
}
.label {
  display: block;
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--coral);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.sample-text {
  display: block;
}
footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 1rem;
  color: var(--dark-text);
}
