JSFiddle - React, Tailwind, and code Playground
HTML
<div id="image">
<a href="http://www.facebook.com">
<p id="image-text">
Hello World!</p>
</div>
CSS
#image {
background-image: url('../images/slider.jpg');
background-position: left top;
background-repeat:no-repeat;
background-size: cover;
cursor: pointer;
margin-right: auto;
margin-left:auto;
max-width: 80%;
height: 500px;
box-shadow: 0px 0px 10px 7px #606060;
}
#image-text {
color: 000000;
font-size: 24px;
font-weight: bold;
text-align:center;
height: 20px;
width: 100%;
top: 50%;
left: 0;
position: absolute;
margin-top: -10px;
}