
.plant-decoration {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 200px;
    height: 250px;
    opacity: 0.2;
}
.plant-stem {
    width: 130px;
    height: 200px;
    background: #5eead4;
    border-radius: 65px 65px 0 0;
    margin: 0 auto;
}
.plant-pot {
    width: 150px;
    height: 50px;
    background: #99f6e4;
    border-radius: 50%;
    margin: -10px auto 0;
}
@media (max-width: 768px) {
    .plant-decoration {
        width: 120px;
        height: 150px;
        bottom: 20px;
        right: 20px;
    }
    .plant-stem {
        width: 80px;
        height: 120px;
        border-radius: 40px 40px 0 0;
    }
    .plant-pot {
        width: 90px;
        height: 30px;
    }
}



