<style>
.speech {
    display: grid;
    gap: 1em 0;
    padding: 25px 15px;
    background-color: #769ece;
    max-width: 580px;
    margin: 0 auto;
}
.speech__section {
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.speech__img {
    width: 2.7em;
    height: 2.7em;
    border-radius: 50%;
}
.speech__p {
    display: inline-block;
    position: relative;
    max-width: 80%;
    margin: 0;
    padding: .4em .8em;
    border-radius: 20px;
    color: #333;
    font-size: .9em;
    text-align: left;
}
.speech__p.left {
    background-color: #fff;
}

.speech__p.right {
    background-color: #30e852;
    margin: 0 10px 0 auto;
}
.speech__p::before {
    position: absolute;
    top: -15px;
    width: 20px;
    height: 30px;
    content: '';
}
.speech__p.left::before {
    left: -10px;
    border-radius: 0 0 0 15px;
    box-shadow: -3px -15px 0 -7px white inset;
}
.speech__p.right::before {
    right: -10px;
    border-radius: 0 0 15px 0;
    box-shadow: 3px -15px 0 -7px #30e852 inset;
}	
</style>
