body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightblue;
}

.balloon {
    width: 12em;
    height: 19em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.envelope {
    position: relative;
    width: inherit;
    height: 16em;
    overflow: hidden;
}

.envelope span {
    position: absolute;
    width: inherit;
    height: 12em;
    color: orange;
    background-color: currentColor;
    border-radius: 50%;
}

.envelope span::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10em solid;
    border-left: 5.5em solid transparent;
    border-right: 5.5em solid transparent;
    left: calc(50% - 5.5em);
    top: 8.45em;
}

.envelope span:nth-child(2) {
    transform: scaleX(0.4);
    color: darkorange;
}

.basket {
    position: relative;
    width: 2em;
    height: 3em;
}

.basket::before {
    content: '';
    position: absolute;
    width: inherit;
    height: 1.6em;
    background-color: peru;
    bottom: 0;
    border-radius: 0 0 0.5em 0.5em;
}

.basket::after {
    content: '';
    position: absolute;
    width: 105%;
    height: 0.3em;
    background-color: saddlebrown;
    border-radius: 0.3em;
    left: calc((100% - 105%) / 2);
    top: 1.3em;
}

.basket span {
    position: absolute;
    width: 0.1em;
    height: 1.5em;
    background-color: burlywood;
    left: calc((var(--n) - 1) * 0.6em);
    transform-origin: bottom;
    transform: rotate(calc(var(--r) * 7deg));
}

.basket span:nth-child(1) { --n: 1; --r: -2; }
.basket span:nth-child(2) { --n: 2; --r: -1; }
.basket span:nth-child(3) { --n: 3; --r: 1; }
.basket span:nth-child(4) { --n: 4; --r: 2; }
