JSFiddle - React, Tailwind, and code Playground

HTML

<article class="card">
    <h1>Heading</h1>
    <div class="text">
        There be some text
    </div>
</article>

CSS

.card {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box; 
    float: left; 
    width: 310px; 
    height: 310px; 
    text-align: center;     
    color: black; 
    padding-top: 35px;
    border: 1px solid black;
    background: #0aabff;
    z-index: 0;
}

.card h1 {
    font-size: 15px; 
    font-weight: bold; 
    line-height: 17px; 
    font-style: italic; 
    margin: 0;
}

.card .text { 
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box; 
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); 
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); 
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); 
    margin: 8px auto; 
    padding: 15px 10px; 
    font-size: 13px; 
    text-align: left; 
    line-height: 14px; 
    height: 170px; 
    width: 280px; 
    background: white; 
    border-radius: 5px; 
    position: relative; 
    color: #222222; 
    z-index: 1;
}
.card .text:before, 
.card .text:after { 
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8); 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8); 
    content: ""; 
    display: block; 
    position: absolute; 
    z-index: -1; 
    top: 50%; 
    bottom: 0; 
    left: 40px; 
    right: 40px; 
    border-radius: 100px/10px; 
}
.card .text:after {
    -webkit-transform: skew(8deg) rotate(3deg);
    -moz-transform: skew(8deg) rotate(3deg); 
    transform: skew(8deg) rotate(3deg); 
    right: 10px; left: auto; 
}