body {
  margin: 0;
}

.wrap {
  background-image: url(https://www.lovex.com/wp-content/themes/lovex/i/homeBanner.jpg);
  background-size: cover;
  height: 100vh;
  width: 100vw;
  padding: 0;
}

.heart-wrap {
  width: 150px;
  height: 150px;
  position: relative;
  top: 100px;
  margin: 0 auto;
}

.heart-svg {
  width: 40%;
  height: auto;
  position: absolute;
  top: 33%;
  left: 28%;
}

.target {
  -webkit-transition: all 750ms cubic-bezier(0.86, 0, 0.07, 1);
  position: relative;
  top: -0;
  left: 0;
}

.target .pulse {
  border-radius: 50%;
  display: block;
  position: absolute;
  border: 3px solid #fc5031;
  padding: 34%;
  width: auto;
  height: auto;
  top: 18px;
  left: 18px;
  animation: grow 3s linear infinite;
  box-shadow: inset 0px 0px 5px 4px rgba(252, 80, 49, 0.2), 0px 0px 5px 4px rgba(252, 80, 49, 0.2);
}

.target .pulse:first-of-type {
  animation-delay: -3s;
}

.target .pulse:nth-child(2) {
  animation-delay: -2s;
}

.target .pulse:nth-child(3) {
  animation-delay: -1s;
}

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scale(0.8);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.6);
    opacity: 0;
  }
}
