.comic-balloon {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 20px 25px;
    max-width: 100%;
    color: #333;
    font-size: 15px;
    background: #fff;
    border: 3px solid #8B0000;
    border-radius: 25px;
    line-height: 1.8;
    filter: drop-shadow(2px 2px 2px rgba(139, 0, 0, 0.3)) 
            drop-shadow(-1px -1px 1px rgba(139, 0, 0, 0.2))
            drop-shadow(1px -1px 1px rgba(139, 0, 0, 0.2))
            drop-shadow(-1px 1px 1px rgba(139, 0, 0, 0.2));
}
.comic-balloon p {
    margin: 0;
    padding: 0;
}
.round-box {
    display: grid;
    grid-template-columns: 88px auto;
    gap: 10px;
}

.round {
    font-size: 1.5rem;
    color: #333;
    width: 88px;
    height: 88px;   
    border-radius: 44px;
    text-align: center;
    line-height: 88px;
}
.round.blue {
    background-color: #007bff;
    color: #fff;
}
.round.pink {
    background-color: #b72661;
    color: #fff;
}