JSFiddle - React, Tailwind, and code Playground
HTML
<article id="artikel1">
<h1><a href="#artikel1">Menschenwürde</a></h1>
<p>Die Würde des Menschen ist […]</p>
</article>
<article id="artikel2">
<h1><a href="#artikel2">Freiheit der Person</a></h1>
<p>Jeder hat das Recht auf […]</p>
</article>
<article id="artikel3">
<h1><a href="#artikel3">Gleichheit vor dem Gesetz</a></h1>
<p>Alle Menschen sind […]</p>
</article>
CSS
article p { display: none }
article:target { background: #000; color: gold }
article:target p { display: block }
article:target h1 a { color: #f00 }