JSFiddle - React, Tailwind, and code Playground

by maddesigns

HTML

<div>Sprechblase</div>

CSS

div {
    height: 200px;
    width: 400px;
    border-radius: 50%;
    background-color: red;
    text-align: center;
    line-height: 200px;
    position: relative;
    -webkit-box-shadow: 4px 4px 5px rgba(0,0,0,0.5);
}

div:before {
    background-color: red;
    content: '\0020';
    display: block;
    height: 40px;
    width: 80px;
    position: absolute;
    bottom: 0px;
    right: 50px;
    z-index: 0;
    -webkit-transform:skewX(15deg) skewY(10deg);
    -webkit-box-shadow: 5px 4px 5px rgba(0,0,0,0.5);

}