HTML CSS * { margin: 0; padding: 0; } .back { position: fixed; width: 100%; height: 100%; background: #fff; animation: back 1s infinite; } .heart { position: absolute; top: 50%; left: 50%; background: red; width: 50px; height: 50px; transform: rotate(-45deg); animation: beat 1s infinite; } .heart::after { content: ''; position: absolute; top: 0; left: 25px; background: red; width: 50px; height: ..