JSFiddle - React, Tailwind, and code Playground

by JohnFish

HTML

<div class="content">
    <span class="large norm"> Who done it?</span>
    <span class="small norm"> Laura and James Secord</span>
</div>

CSS

.content {
    height: 200px;
    width: 350px;
    position: absolute;
    top: 50%;
    margin-top: -100px;
    left: 50%;
    margin-left: -175px;
}
html {
    background: url(http://i.imgur.com/ECvjY.png);
}
.norm { 
    text-align: center;
    line-height: 200px;
    font-family: Arial, sans-serif;
}
.norm::selection {
    color: black;
    background: red;
}
.large {
    font-weight: bold;
    font-size: 1.5em;
}