```html
.heart {
position: absolute;
width: 100px;
height: 90px;
transform: rotate(45deg);
background: red;
top: 30%;
left: 50%;
marginleft: 50px;
}
.heart::before,
.heart::after {
content: '';
position: absolute;
width: 100px;
height: 100px;
background: red;
borderradius: 50%;
}
.heart::before {
top: 50px;
left: 0;
}
.heart::after {
top: 0;
left: 50px;
}
.text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(50%, 50%);
textalign: center;
fontsize: 24px;
color: red;
fontweight: bold;
}