JSFiddle - React, Tailwind, and code Playground

HTML

<div id="logo">
    <p class="right">
    hello world<br />
    goodbye
    </p>
</div>

CSS

div#logo {
clear: both;
padding: 1em;
border: 0;
margin: 1em auto;
text-align: center;
width: 75%;
background-color:yellow;
    position:relative;
    
   height:200px;
}

.right{text-align:left;}

JavaScript

}