:root {
  --mint: #d8e7e4;
  --sludge: #21322f;
  --ocean: #92b4ce;
  --ocean-sludge: #22273e;
  --plum: #d1327c;
  --plum-sludge: #aa2d68;
  --plum-frozen: #cea6bb;
  --holly: #529666;
}

body {
  background: var(--mint);
  color: var(--sludge);
  font-family: "pliego", serif;
  font-size: clamp(16px, 4vw, 24px);
  line-height: 1.5;
}

::selection {
  background: var(--ocean);
  color: var(--ocean-sludge);
}

img {
  max-width: 100%;
}
a {
  color: var(--plum);
  text-decoration-color: var(--plum-frozen);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: .2s ease-in-out;
}

a:hover {
  color: var(--plum-sludge);
  text-decoration-color: var(--plum-sludge);
}

header,
main,
footer {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: 55ch;
  padding-inline: 1em;
  width: 100%;
}


h1 {
  line-height: 1;
  margin-top: 2em;
}

h2 {
  font-variant-caps: all-small-caps;
  font-weight: normal;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

@counter-style ul-primary {
  
  system: cyclic;
  /* symbols: '◆'; */
  symbols: '✦';
  suffix: ' '; /* U+2004 	THREE-PER-EM SPACE (thick space) */
}

ul {
  list-style-type: ul-primary;
  padding-left: clamp(1em, 5vw, 1.5em);
}
li::marker {
  color: var(--holly);
  font-size: .8em;
}


footer {
  margin-top: 2em;
  padding-block: 3em;
}





.transparent {
  mix-blend-mode: multiply;
}