      :root {
        --max-width: 1200px;
        --gap: 2rem;
        --section-padding: 2rem;
        --bg: rgb(250, 243, 230);
        --text: #222;
        --card-bg: #fff;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: system-ui, sans-serif;
        line-height: 1.6;
        color: var(--text);
        background-color: var(--bg);
        font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
      }

      header {
        width: 100%;
        background:
          linear-gradient(to right, transparent 47%, #c8102e 47%, #c8102e 53%, transparent 53%),
          linear-gradient(to bottom, transparent 44%, #c8102e 44%, #c8102e 56%, transparent 56%),
          white;
        color: black;
        padding: 1rem;
        border: 2px solid #c8102e;
        text-align: center;
        text-wrap: balance;
        font-family: "Comic Sans MS", "Comic Sans", "Segoe Print", "Bradley Hand",
          Chilanka, TSCu_Comic, casual, cursive;
      }

      h1,
      h2,
      h3 {
        text-align: center;
        text-wrap: balance;
        font-family: "Comic Sans MS", "Comic Sans", "Segoe Print", "Bradley Hand",
          Chilanka, TSCu_Comic, casual, cursive;
      }

      h2,
      h3 {
        color: #c8102e;
      }

      h1 {
        font-size: 3rem;
        color: yellow;
        -webkit-text-stroke-color: black;
        -webkit-text-stroke-width: 2px;
      }

      header p {
        font-size: 2rem;
        margin-top: -1em;
      }

      main {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: var(--section-padding) 1rem;
      }

      /* Each direct child section of main is a content row. */
      main > section {
        display: grid;
        grid-template-columns: minmax(200px, 40%) 1fr;
        gap: var(--gap);
        align-items: center;
        margin-bottom: 2rem;
        background: rgb(250, 243, 230);
        padding: 1.5rem;
        border-radius: 0.5rem;
      }

      /* The first child contains the image; the last contains the text. */
      main > section > div:first-child img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
      }

      /* Alternate the image/text order on even sections. */
      main > section:nth-of-type(even) > div:first-child {
        order: 2;
      }

      main > section:nth-of-type(even) > div:last-child {
        order: 1;
      }

      main>p {font-weight: bold ;}

      footer {
        width: 100%;
        color: #c8102e;
        text-align: center;
        background-image: url(images/ryan-heroes.jpg);
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: contain;
        padding-bottom: 8em;
      }

      footer p {
        font-size: 2em;
        margin-bottom: 7em;
        padding-bottom: 2em;
        animation: fade-blink 1.5s linear infinite;
      }

      @keyframes fade-blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
      }

      @media (max-width: 768px) {
        main > section {
          display: block;
          width: 100%;
          max-width: 100vw;
        }

        footer {
          margin-bottom: 2em;
          padding: 1em;
        }
      }
