* {
    margin: 0px;
    padding: 0px;
}

.booble {
    width: fit-content;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 15px;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    position: relative;
}

.booble-right {
    margin-right: 0;
    margin-top: 5px;
    padding-right: 25px;
    text-align: right;
    background: #cce5ff;
    color: #004085
}

.booble-right:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 15px solid #cce5ff;
    border-right: 15px solid transparent;
    border-top: 15px solid #cce5ff;
    border-bottom: 15px solid transparent;
    right: -16px;
    top: 0px;
}

.booble-left {
    margin-left: -20px;
    margin-bottom: 5px;
    padding-left: 25px;
    text-align: left;
    background: #e2e3e5;
    color: #383d41;
}

.booble-left:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 15px solid transparent;
    border-right: 15px solid #e2e3e5;
    border-top: 15px solid #e2e3e5;
    border-bottom: 15px solid transparent;
    left: -16px;
    top: 0px;
}
