JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">
<div id="a"> <span id="aa">Text1</span></div>
<div id="b"> <span id="bb">Text2</span></div>
</div>
CSS
div#container{
text-align: center;
position:absolute;
right:0;
bottom:0;
}
span#aa{
font-size: 75px;
color: rgba(0, 0, 0, 0.5);
background-color: Yellow;
}
span#bb{
font-size: 45px;
color: rgba(0,0,0,0.5);
background-color: red;
}