<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>It seems too easy. And to be fair, it doesnt look great.</title>
<style>
h1 {
font-family: system-ui, sans-serif;
background-color: #000;
color: #fff;
font-weight: 400;
font-size: 3em;
}

@supports (box-decoration-break: clone) or (-webkit-box-decoration-break: clone) {
h1 {
display: inline;
padding: 0 .2em;
margin: 0 -.2em;
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}
}
</style>
</head>
<body>
<h1>It seems too easy. And to be fair, it doesnt look great.</h1>
</body>
</html>