:root {
  --color-primary-500: #1a0033;
  --color-primary-400: #4f0099;
  --color-primary-300: #8300ff;
  --color-primary-200: #b566ff;
  --color-primary-100: #e6ccff;
}

body {
  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: #0f172a;
  background: #f3f3f3;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.75em;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 1.5em;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: 2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 80px 24px;
  background: var(--color-primary-300);
  color: #f3f3f3;
}

.hero .subhead {
  font-size: 1.25rem;
  margin-top: 1em;
}

.hero .icon {
  font-size: 4em;
}

main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

section {
  padding: 2em 4em;
}

section.text {
  background-color: #fff;
}

section.text pre {
  background-color: var(--color-primary-100);
  width: fit-content;
  padding: 1em;
  font-family: "Courier New", Courier, monospace;
}

.symbolOfTolerance {
  background: linear-gradient(
    90deg,
    #ea392f 0 9.091%,
    #f28917 9.091% 18.182%,
    #eecb12 18.182% 27.273%,
    #78b82a 27.273% 36.364%,
    #4375ca 36.364% 45.455%,
    #c346e3 45.455% 54.545%,
    #7bcce5 54.545% 63.636%,
    #eaeaea 63.636% 72.727%,
    #f4aec8 72.727% 81.818%,
    #000 81.818% 90.909%,
    #945516 90.909% 100%
  );
  height: 1em;
  width: 100%;
  margin-top: 2em;
}
