div.speech-bubble-wrapper{
    position: absolute;
    right: 40px;
    bottom: 40px;
    height: 100vh;
    width: 300px;
}

p.speech {
    position: absolute;
    bottom: 0px;
    width: 300px;
    height: 150px;
    padding: 15px 5px;
    text-align: center;
    line-height: 30px;
    background-color: #fff;
    color: #666;
    border: 8px solid #ff4a4a;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px rgba(161, 37, 40, 0.46);
    -moz-box-shadow: 2px 2px 4px #888;
    box-shadow: 2px 2px 4px rgba(161, 37, 40, 0.46);
}

p.speech:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 30px;
    top: 136px;
    border: 25px solid;
    border-color: #ff4a4a transparent transparent #ff4a4a;
}

p.speech:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 38px;
    top: 134px;
    border: 15px solid;
    border-color: #fff transparent transparent #fff;
}

p.speech > .speech-title {
    color: black;
    font-weight: 700;
}