.balloon {
    --balloonDimension: 5vmax; /* 15% of min(viewport width, height) */
    width: var(--balloonDimension);
    height: var(--balloonDimension);
    border-radius: 100% 100% 15% 100%;
    margin: 0 0 0 25px;
    transform: translate(5px, 10vh) rotateZ(45deg);
    position: fixed;
    bottom: -1px;
    left: 10px;
    background-color: aqua;
    z-index: 0;
}
.balloon::before {
    content: "";
    width: 10%;
    height: 25%;
    background: radial-gradient(circle, rgba(255,255,255,.7) 0%, rgba(255,255,255,.1) 100%);
    position: absolute;
    left: 15%;
    top: 45%;
    border-radius: 100%;
}
.balloon::after {
    content: "";
    width: 13%;
    height: 5%;
    background-color: inherit;
    position: absolute;
    left: 90%;
    top: 94%;
    border-radius: 22%;
    transform: rotateZ(-45deg);
}
.balloon .string {
    position: absolute;
    background-color: #990;
    width: 2px;
    height: calc(var(--balloonDimension) * .4);
    transform-origin: top center;
    transform: rotateZ(
            -45deg
    );
    top: calc(var(--balloonDimension) - 0px);
    left: calc(var(--balloonDimension) - 0px);
}
.yellow{
    background-color: rgb(227 227 58 / 0.7);
}
.green{
    background-color: rgb(82 236 82 / 0.7);
}
.blue{
    background-color: rgb(135 89 218 / 0.7);
}
.red{
    background-color: #c02b63;
}