﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: cadetblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    position: relative;
    top: 75px;
    left: -15px;
    width: 140px;
    height: 150px;
    background: linear-gradient(135deg, #C02211 0%, #EE14CB 100%, #51BAFF 100%);
    clip-path: polygon(32% 71%, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 0, 76% 65%);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    z-index: 2;
}

.flower-top {
    position: relative;
    top: -50px;
    left: -8px;
    width: 80px;
    height: 80px;
    background: linear-gradient(104deg , #E42814 0%, #EE2FBF 100%, #51BAFF 100%);
    z-index: 1;
    border-radius: 50%;
}

.flower-stem {
    position: relative;
    top: -10px;
    left: -18px;
    width: 80px;
    height: 120px;
    background: green;
    z-index: 1;
    clip-path: polygon(53% 27%, 54% 13%, 54% 0, 62% 0, 62% 14%, 61% 29%, 59% 44%, 54% 61%, 49% 77%, 42% 74%, 48% 57%, 51% 44%);
}

.flower-stem2 {
    position: relative;
    top: -44px;
    left: -28px;
    width: 45px;
    height: 120px;
    background: green;
    z-index: 1;
    clip-path: polygon(31% 41%, 41% 25%, 60% 0, 77% 0, 60% 18%, 45% 39%, 37% 62%, 40% 86%, 46% 100%, 35% 100%, 28% 81%, 26% 60%);
}

.flower-leaf {
    position: relative;
    display: flex;
    z-index: 1;
    padding: 0px 30px 0px 0px;
}

.flower-leaf span {
    position: absolute;
    
    top: calc(-270px + calc(var(--i)*45px));
    
    width: 80px;
    height: 24px;

    filter: blur(0.4px);

    background: darkgreen;
    border-radius: 50%;
}

