body{
    margin: 0;
    padding: 0;
    background: #FCD9E2;
}
.box{
    position: relative;
    display: block;
    margin: auto;
    margin-top: 8%;
    width: 600px;
    height: 420px;
}
.bottle{
    position: absolute;
    width: 30%;
    height: 60%;
    left: 33%;
    bottom: 5%;
    background: #ffffff;
    border: 7px solid #37B0C1;
    border-top: none;
    border-radius: 60px 60px 30px 30px;
}
.top-part{
    position: absolute;
    width: 52%;
    height: 25%;
    left: 20.5%;
    top: -24%;
    background: #ffffff;
    border: 7px solid #37B0C1;
    border-top: none;
    border-bottom: none;
}
.part-1{
    position: absolute;
    width: 70%;
    height: 10%;
    left: 12%;
    top: -30%;
    background: #ffffff;
    border: 7px solid #37B0C1;
    border-radius: 30px;
}
.potion{
    position: absolute;
    width: 90%;
    height: 55%;
    left: 5%;
    bottom: 5%;
    background: #F01A50;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.particle{
    position: absolute;
    width: 5px;
    height: 5px;
    left: 10%;
    bottom: 20%;
    background: #B4093B;
    border-radius: 50%;
}
.particle:nth-child(2), .particle:nth-child(4), .particle:nth-child(5){
    width: 10px;
    height: 10px;
    left: 25%;
    bottom: 30%;
}
.particle:nth-child(3){
    left: 50%;
    bottom: 15%;
}
.particle:nth-child(4){
    left: 45%;
    bottom: 40%;
}
.particle:nth-child(5){
    left: 60%;
    bottom: 60%;
}
.particle:nth-child(6){
    width: 15px;
    height: 15px;
    left: 75%;
    bottom: 35%;
}
.heart{
    position: absolute;
    width: 50px;
    height: 50px;
    left: 15%;
    top: 20%;
    background: #EE1A50;
    transform: rotate(45deg);
}
.heart::before{
    position: absolute;
    content: '';
    background-color: #EE1A50;
    height: 60%;
    width: 100%;
    top: -59%;
    border-radius: 75px 75px 0 0;
}
.heart::after{
    position: absolute;
    content: '';
    background-color: #EE1A50;
    height: 60%;
    width: 100%;
    transform: rotate(-90deg);
    top: 20%;
    right: 79%;
    border-radius: 75px 75px 0 0;
}
.heart:nth-child(2){
    left: 80%;
    top: 80%;
}