  @import url("https://use.typekit.net/ezb8ypa.css");

  :root {
      --primary: #ffd500;
      --dark: #000000;
      --white: #ffffff;

      --font-light: 300;
      --font-book: 400;
      --font-medium: 500;
      --font-demi: 600;
      --font-extra-bold: 800;
      --font-heavy: 900;

      --max-width: 800px
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "futura-pt", sans-serif;
      font-style: normal;
      color: var(--dark);
      text-decoration: none;
  }

  *:has(>.max-width) {
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .max-width {
      max-width: var(--max-width);
      width: 100%;
  }

  h1 {
      font-size: clamp(30px, 80px, 10vw);
      font-weight: var(--font-extra-bold);
      color: var(--dark);
      text-transform: uppercase;
  }

  h4 {
      font-size: 25px;
  }

  p,
  a,
  strong {
      font-size: 22px;
      line-height: 1.5;
  }

  nav {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      background-color: var(--primary);
      padding: 10px 50px;
  }

  nav img {
      max-height: 120px;
  }

  nav .max-width>div {
      width: 100%;
  }


  body>.max-width {
      margin-top: 170px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      padding: 100px 50px;
  }

  body>.max-width>div {
      display: flex;
      flex-direction: column;
      gap: 32px;
  }

  body>.max-width>div>h4:last-of-type {
      margin-top: 32px;
  }

  body>.max-width>div span p {
      display: flex;
      gap: 16px;
      align-items: center;
      border-bottom: 1px solid hsl(from var(--dark) h s 80 / 1);
      padding: 10px 0;
      text-align: right;
    }
    
    body>.max-width>div span strong {
        flex: 1;
        text-align: left;
  }

  @media screen and (max-width: 504px) {
    body>.max-width>div span p {
        flex-direction: column;
        align-items: start;
        text-align: left;
    }
  }