JSFiddle - React, Tailwind, and code Playground

HTML

<div class="grid 6 cheese_people_r">
        <img id="cheese_people_r" src="http://s15.postimg.org/vl0o8vobf/cheese_owner.jpg">

                <p>The Big Cheese Owner
                    <br/>Sally Fiffle
                    <br/>&ldquo;I wanted to create an online store that I'd would trust. This has been done by our amazing staff and the products they produce. Nothing can replace dedication and pasion.&rdquo;</p>
            <div class="grid 6 cheese_people_r">
        <img id="cheese_people_r" src="http://s15.postimg.org/vl0o8vobf/cheese_owner.jpg">

                <p>The Big Cheese Owner
                    <br/>Sally Fiffle
                    <br/>&ldquo;I wanted to create an online store that I'd would trust. This has been done by our amazing staff and the products they produce. Nothing can replace dedication and pasion.&rdquo;</p>

</div>

CSS

.cheese_people_r {
    color: #524c43;
    font-family: Arapey;
    background-color: #ffffff;
    border: 2px solid #524c43;
    -webkit-border-radius: 50px 0px 0px 50px;
    border-radius: 50px 0px 0px 50px;
    width: 400px;
    padding-left: 230px;
    line-height: 1.27;
    list-style-type: none;
    display: -webkit-flex;
    -webkit-flex-direction: row;
    -webkit-flex-wrap-wrap;
    overflow: hidden;
    position: relative;
}
.cheese_people_r li:first-child {
    -webkit-flex: 2;
}
li {
    margin: 5px;
    border-radius: 5px;
}
.cheese_people_r p {
    position: absolute;
    bottom: 0;
}
#cheese_people_r {
    -webkit-box-shadow: 7px 7px 5px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 7px 7px 5px rgba(50, 50, 50, 0.75);
    box-shadow: 7px 7px 5px rgba(50, 50, 50, 0.75);
    -webkit-border-radius: 50px 0px 0px 50px;
    border-radius: 50px 0px 0px 50px;
    border: 2px solid red;
    float: left;
    margin: 10px 10px 10px -220px;
}