```html
body {
backgroundcolor: f4f4f4;
display: flex;
justifycontent: center;
alignitems: center;
height: 100vh;
margin: 0;
}
.heart {
width: 100px;
height: 100px;
position: relative;
animation: heartbeat 1s infinite;
}
.heart:before,
.heart:after {
content: "";
width: 100px;
height: 100px;
backgroundcolor: red;
borderradius: 50%;
position: absolute;
left: 50px;
top: 0;
}
.heart:after {
left: 0;
top: 50px;
}
@keyframes heartbeat {
0% {
transform: scale(1);
}
50% {
transform: scale(1.3);
}
100% {
transform: scale(1);
}
}