JSFiddle - React, Tailwind, and code Playground
by Josh Pullen
HTML
<div>
Therefore do not worry about tomorrow, for tomorrow will worry about itself. Each day has enough trouble of its own.
</div>
CSS
@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');
body {
width: 100vw;
height: 100vh;
margin: 0;
background: radial-gradient(circle, rgba(251,253,254,1) 0%, rgba(219,227,230,1) 100%);
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
div {
font-family: 'Merriweather', serif;
font-size: 4vmin;
text-align: right;
width: 60vmin;
margin: 20px;
color: #636566;
}