.balloon {
    --balloonDimension: 2vmax; /* 15% of min(viewport width, height) */
    width: var(--balloonDimension);
    height: var(--balloonDimension);
    border-radius: 100% 100% 15% 100%;
    margin: 0 0 0 25px;
    transform: rotateZ(45deg);
    position: fixed;
    bottom: calc(-1 * var(--balloonDimension));
    left: 0;
    background-color: aqua;
    z-index: 2;
}
.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: 1px;
    height: calc(var(--balloonDimension) * 1);
    transform-origin: top center;
    transform: rotateZ(-45deg);
    top: calc(var(--balloonDimension) - 2px);
    left: calc(var(--balloonDimension) - 2px);
}
.yellow{
    background-color: rgba(174, 132, 70, 1);
}
.green{
    background-color: rgba(0, 0, 0, 1);
}
.blue{
    background-color: rgba(167, 30, 34, 1);
}
.red{
    background-color: rgba(30, 52, 100, 1);
}
.bright{
    background-color: rgba(247, 147, 29, 1);
}