* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f8f0;
  }

  .heart {
    position: relative;
    width: 200px;
    height: 200px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: rgb(249, 232, 244);
    animation: heart 5s linear forwards infinite;
  }
  .heart:before,
  .heart:after {
    position: absolute;
    width: 200px;
    height: 200px;
    content: '';
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(249,232,244);
  }
  .heart:before {
    bottom: 0px;
    left: -100px;
  }
  .heart:after {
    top: -100px;
    right: 0px;
  }
  
  @keyframes grow {
    0% {
      height: 0;
    }
    20% {
      height: 30px;
      transform: scaleY(0.2);
    }
    40% {
      height: 60px;
      transform: scaleY(0.4);
    }
    60% {
      height: 90px;
      transform: scaleY(0.6);
    }
    80% {
      height: 120px;
      transform: scaleY(0.8);
    }
    100% {
      height: 150px;
      transform: scaleY(1);
    }
  }
  
  @keyframes heart {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  
  
.mover {
    background-color: #d3e3f2;
    width: 15vw;
    height: 15vw;
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    animation: mover 5s infinite;
}

@keyframes mover {
    0% {
        /* left: -16vw; */
        transform: translatex(-16vw);
    }
    100% {
        /* left: 110%; */
        transform: translateX(110vw);
    }
}