Outlined Text Stroke

is pretty well-supported!

with -webkit-text-stroke and paint-order

* {
  --stroke-color: black;
  --stroke-size: 10px;
  color:white;
  
  -webkit-text-stroke: var(--stroke-size) var(--stroke-color);
  paint-order: stroke fill;
}