@keyframes beat {
  0% {
    transform: scale(1) rotate(225deg);
    box-shadow: 0 0 40px #F8D1D1;
  }

  50% {
    transform: scale(1.3) rotate(225deg);
    box-shadow: 0 0 70px #F8D1D1;
  }

  100% {
    transform: scale(1) rotate(225deg);
    box-shadow: 0 0 40px #F8D1D1;
  }
}



#chest {
  position: relative;
  width: 100px;
  height: 100px;
  /* width: 500px; */
  /* height: 500px; */
  margin: 0 auto;
  /* scale: 0.2; */
  /* transform-origin: 50% 50%; */
}

.heart {
  position: absolute;
  z-index: 2;
  background: -moz-linear-gradient(-90deg, #F8D1D1 0%, #F8D1D1 40%);
  background: -webkit-gradient(linear, right 50%, left 50%, color-stop(0%, #F8D1D1), color-stop(40%, #F8D1D1));
  background: -webkit-linear-gradient(-90deg, #F8D1D1 0%, #F8D1D1 40%);
  background: linear-gradient(-90deg, #F8D1D1 0%, #F8D1D1 40%);
  -webkit-animation: beat 0.7s ease 0s infinite normal;
  -moz-animation: beat 0.7s ease 0s infinite normal;
  animation: beat 0.7s ease 0s infinite normal;
}

.heart.center {
  background: -moz-linear-gradient(-45deg, #F8D1D1 0%, #F8D1D1 40%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #F8D1D1), color-stop(40%, #F8D1D1));
  background: -webkit-linear-gradient(-45deg, #F8D1D1 0%, #F8D1D1 40%);
  background: linear-gradient(-45deg, #F8D1D1 0%, #F8D1D1 40%);
}

.heart.top {
  z-index: 3;
}

.side {
  top: 100px;
  width: 55px;
  height: 55px;
  border-radius: 33px;
}

.center {
  width: 50px;
  height: 50px;
  bottom: 100px;
  /* left: 145px; */
  font-size: 0;
  text-indent: -9999px;
  position: absolute;
  top: 28%;
  left: 25%;
}

.left {
  position: absolute;
  top: 0;
  left: 0;
}

.right {
  position: absolute;
  top: 0;
  /* left: 0; */
  right: 0;
}

.titleh {
  z-index: 3;
  /* color: #62e0ff; */
  color: #ff0000;
  font-size: 21px;
  position: absolute;
  top: 25%;
  left: 0%;
  width: 100%;
}