JSFiddle - React, Tailwind, and code Playground

by Justin

HTML

<div id="logocontainer">
        <div class="sideways">(Not So)</div>
    <div id="right">
        <span class="halfsies">Famous</span>
        <span class="halfsies">Last Words</span>
    </div>
</div>

CSS

* {margin:0px; padding:0px;}
#logocontainer { width: 200px; height:100px}
#right { width:50%; position:absolute; top:0px;padding-left:5%}
.halfsies {display:inline-block; width:90%; font-size:120%}
.sideways {padding:0px; margin:0px;-webkit-transform:rotate(-90deg);font-size:2%; display:inline-block; line-height:10px; margin-top:15px}