JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
     <h1>DAMAGE</h1>

</div>

CSS

@import url(https://fonts.googleapis.com/css?family=Press+Start+2P);
 #container {
    display:flex;
    align-items:center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(140, 255, 94);
}
h1 {
    font-family:'Press Start 2P', Arial;
    font-weight: 400;
    color: white;
    font-size: 30px;
    text-shadow: -4px -4px 0 #000, 4px -4px 0 #000, -4px 4px 0 #000, 4px 4px 0 #000;
}