JSFiddle - React, Tailwind, and code Playground

HTML

<section>
<div class="show">Hover me</div>
<div class="hide">Show me now!</div>
</section>

CSS

.show
{
	font-size : 15px;
	font-family : Garamond;
	background-color : #fff;
	border : none;
	position : absolute;
	cursor : help;
	right : 0;
	bottom : 0;
	padding-right : 15px;
	padding-top : 10px;
	padding-left : 10px;
	padding-bottom : 10px;
	margin-bottom : 150px;
	border-radius : 25px;
	text-align : center;
	width : 13%;
}

.hide
{
  opacity : 0;
  transition : opacity 2s;
}

.show:hover .hide
{
	opacity : 1;
}