  body {
      font-family: Helvetica, Arial;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
      color: #333;
      font-size: 0.9rem;
  }

  .container {
      display: flex;
      flex-direction: column;
      /* stack rows */
      align-items: center;
      /* center children horizontally */
      gap: 2rem;
      margin: 2rem;
      background: white;
      box-shadow: 0px 0px 117px -35px rgba(0, 0, 0, 0.54);
      -webkit-box-shadow: 0px 0px 117px -35px rgba(0, 0, 0, 0.54);
      -moz-box-shadow: 0px 0px 117px -35px rgba(0, 0, 0, 0.54);
  }

  .promo {
      font-style: italic;
      font-size: 0.8rem;
  }

  .name {
      text-align: center;
  }

  .name h1 {
      margin: 0px;
      font-size: 2rem;
      font-weight: 100;
      margin-bottom: 0.2rem;
      color: #04293b
  }

  .name h2 {
      margin: 0px;
      font-size: 2rem;
      font-weight: 100;
      padding-top: 0.2rem;
  }

  .name h3 {
      font-size: 0.8rem;
      color: #666;
      padding: 1rem;
      font-weight: 100;
      margin: 0;
      padding-top: 0.5rem;
  }

  .name h2,
  .name h3,
  .name p {
      background-color: #05293a;
      color: white;
      margin: 0;
  }

  .name p {
      margin-bottom: 0px;
      font-size: 0.85rem;
      text-align: center;
      font-weight: 100;
      padding-bottom: 2rem;
      padding-left: 1rem;
      padding-right: 1rem;
  }

  .contact {
      display: flex;
      flex-direction: column;
      /* keep column */
      justify-content: center;
      gap: 2rem;
      min-width: 60%;
      align-self: center;

  }

  .contact {
      padding: 1.5rem;
      /* min-height: 15rem; */
  }

  .contact .item {
      display: flex;
      justify-content: space-between;
      flex-direction: row;
      align-items: center;
      font-weight: 300;
  }

  .contact .item.download {
      display: flex;
      justify-content: space-around;
  }

  .contact .item.download a {
      color: #04293b;
  }

  .contact .item img {
      width: 24px;
      margin-inline-end: 0.5rem;
  }

  .contact .item span {
      margin-inline-end: 0.8rem;
      display: flex;
      align-items: center;
  }

  .contact a {
      color: #00a8ffbd;
      text-decoration: none;
      text-align: end;
  }

  .contact a:hover {
      text-decoration: underline;
  }