JSFiddle - React, Tailwind, and code Playground

HTML

<h1 class="stroke">WHAT CARRER SHOULD YOU HAVE ?</h1>
<h1 class="no-stroke">WHAT CARRER SHOULD YOU HAVE ?</h1>

CSS

body {
    background: grey;
}

.stroke, .no-stroke {
    color: white;
    font-size: 2.5em;
}

.stroke {
    -webkit-text-stroke: 2px black;
}