*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    justify-content: center;
    align-items: center;
    max-height: 100vh;
}
.heart{
    top: -10vh;
    position: fixed;
    color: purple;
    font-size: 1.5rem;
    animation: fall 3s linear forwards;
}
@keyframes fall{
 from{
   transform:translateY(-10vh);
 }
 to{
   transform:translateY(110vh);
 }
}
