JSFiddle - React, Tailwind, and code Playground

HTML

<div id='container'>
    <div id='bubble' class="filter-drop-shadow">
           ABC
    </div>
</div>

CSS

#container
{
    height:500px;
    background-color:#Febb68;
    padding:30px;
}
#bubble
{
	height:200px;	
    width:200px;
	padding: 50px 60px 0;	
	position: relative;
	z-index: 10;
	border-radius: 30px 0;
	background: rgba(255,255,255,.85);
	box-shadow: 0 0 10px 1px #944;
	margin-bottom: 55px;
}
#bubble:after {
    position :absolute;
	content: "";
	top: 100%;
	left: 0;
	width: 0;
	height: 0;
	border-top: 60px solid rgba(255,255,255,0.85);
	border-right: 85px solid transparent;
	border-left: 0px solid transparent;
   
}
.filter-drop-shadow {
		-webkit-filter: drop-shadow( 0 10px 1px rgba(0,0,0,.5));
		-moz-filter: drop-shadow(0 10px 1px rgba(0,0,0,.5));
		-ms-filter: drop-shadow( 0 10px 1px rgba(0,0,0,.5));
		-o-filter: drop-shadow( 0 10px 1px rgba(0,0,0,.5));
		filter: drop-shadow(0 10px 1px #944);
		}