@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,WONK@0,9..144,100..900,0..100,0..1;1,9..144,100..900,0..100,0..1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --font-size: clamp(15px, 0.37vw + 13.177px, 21px);
  --color1: #F8F8F8;
  --color2: #F0C1AE;
  --color2rgb: 240, 193, 174;
  --color3: #C19077;
  --color4: #213E50;
  --color5: #1D1C22;
  --color6: #24222a;
}

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

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding: 5rem 1rem 1.5rem;
  background-color: var(--color5);
  color: var(--color2);
}

img,
picture,
video,
canvas,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
}

body {
  font-family: Fraunces, serif;
}

.fira-code-300 {
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

main,
header {
  max-width: 777px;
  margin: 0 auto;
  padding: 2rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2em;
  letter-spacing: -2px;
}

h3 {
  font-family: Fraunces, serif;
  font-size: 1.75rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

article {
  margin-bottom: 5rem;
}

article h2 {
  margin-top: 0;
  line-height: 1em;
}

article h3 {
  margin-top: 0;
  line-height: 1em;
}

article p {
  font-size: var(--font-size);
  line-height: 1.75em;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--color1);
  hyphens: auto;
}

article ul {
  font-size: var(--font-size);
  line-height: 1.75em;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--color1);
}

article ul li {
  line-height: 2em;
}

article p strong {
  color: var(--color2);
  text-decoration: underline;
  text-decoration-color: var(--color4);
  text-decoration-skip-ink: none;
  text-decoration-thickness: .5em;
  text-underline-offset: -.25em;
}

article blockquote {
  background-color: var(--color6);
  margin: 25px -50px;
  padding: 2.5rem 50px;
}

article blockquote p {
  margin-bottom: 0;
}

article hr {
  border: 0;
  height: 1px;
  background-color: var(--color4);
  margin-bottom: 2rem;
}

.article-history {
  margin-top: 4rem;
}

.article-history h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.article-history a {
  font-size: 1rem;
  text-decoration: none;
  color: var(--color1)
}

.article-history a:hover {
  color: var(--color2);
}

.article-history span {
  font-size: 0.9rem;
}


.article-history>.nav-title {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: .3rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1em;
}

.nav-title h2 {
  margin: 0px;
}

.nav-title h3 {
  margin: 0px;
  font-size: 1.33em;
}

.article-history>a {
  transition: color .3s ease-out;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: .3rem;
  justify-content: space-between;
  align-items: baseline;
}

nav hr {
  margin: 0 0 .3rem;
  align-self: end;
  height: 1px;
  border: 0;
  border-bottom: 1px dotted var(--color1);
  opacity: .25;
  min-width: 1rem;
  width: 100%;
}

.next-steps {
  padding: 2rem;
  margin-top: 4rem;
}

.next-steps h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
  font-style: normal;
}

.next-steps p,
.next-steps a {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0;
  font-style: italic;
  text-align: center;
  font-weight: 300;
  text-decoration: none;
    color: inherit;
}

#cookie-notice {
  width: 100%;
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  background-color: var(--color3);
  color: var(--color5);
  padding: 1rem;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  display: grid;
}

footer small {
  font-family: 'Inter', sans-serif;
}