JSFiddle - React, Tailwind, and code Playground

HTML

<div class="subcontainer">
    <a href="http://tinypic.com?ref=2ur6rk1" target="_blank" class="imgcolumn">
        <span class="header3">Motivate Yourself</span>
    </a>

     

</div>

CSS

body
{
    font-family: Verdana, Arial, Sans-Serif;
}
.subcontainer {
     border: 3px solid white;
     margin: 0px auto;
     background: url("http://i61.tinypic.com/2ur6rk1.png") no-repeat center top;
     height: 255px;
 }
a {
    text-decoration: none;
}
a:hover {
        font-size: 135%;
}
.imgcolumn SPAN {
    display: block;
}
.imgcolumn:HOVER {
    background-color: rgba(255, 233, 233, .7);
}
SPAN
{
    cursor: pointer;
    font-size: 125%;
}
A:hover span {
    text-shadow: none;
}
 .imgcolumn {
     width: 60%;
     display: table;
    height: 100%;
     margin: 0px auto;
     border: solid 1px #000000;
    background-color: rgba(255, 255, 255, .5);
 }
 .header3 {
     color: black;
     text-align: center;
     position: relative;
    bottom: -132px;
    text-shadow: 1px 1px 3px #ffffff, -1px 1px 3px #ffffff;
    -webkit-font-smoothing: antialiased;
 }