/* css/theme.css */

/*
COLOR PALETTE

Professionals
-------------
background-white:
background-muted: #f3f5f9;

btn-download-teal-dark: #5f7878;
btn-primary-light-green: #eef2f2;
btn-view: white bkgrnd; block font; underline
btn-copy: bkgrnd: ###F2F6F4; border & font: #6B7280;

gray: #6B7280;
light-gray: #F2F6F4;
warm-gray: #D8D2CA;
dark-gay: #A6A6A6;

accent-muted-peach: #E3B6A2;
accent-sky-blue: #BFD7FC;

*/


:root {
  --bg: #ffffff;
  /*#fbfaf8;*/
  --card: #ffffff;
  /* #ffffff; faf7f4*/
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #0f766e;
  --accent2: #b45309;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #ffffff;
  color: var(--ink);
  line-height: 1.55;
}


h1 {
  font-size: 30px;
  margin: 12px 0 8px
}

h2 {
  font-size: 22px;
  margin: 0 0 6px;
}

h3 {
  font-size: 18px;
  margin: 6px 0; /* top & bottom 6px; left & right ---px; */
}


.page-header .lede {
  margin: 10px auto 0;
  text-align: center;
}


ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #374151
}

li {
  margin: 6px 0
}