
.button{
	width: 50px;
	height: 50px;
  top:75%;
  position: fixed;
	left: 50%;
	margin-top: -45px;
	margin-left: -50px;
	border-radius: 5px;
	background: none;
	cursor: pointer;
	transition: background 0.5s ease;
}
.button:hover{

}
.active#heart:before,.active#heart:after{
	background: red !important;
}
#heart {
  
    width: 100px;
    height: 90px;
    transition: background 0.5s ease;
}
#heart:before,
#heart:after {
  background: red !important;
	transition: background 0.5s ease;
    position: absolute;
    content: "";
    left: 50px;
    top: 0;
    width: 50px;
    height: 80px;
    background: dimgrey;
    border-radius: 50px 50px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}
#heart:after {
    left: 0;
    transform: rotate(45deg);
    transform-origin :100% 100%;
}

#text-on-heart {
  top:75%;
  position: fixed;
	left: 50%;
  margin-top: -20px;
	margin-left: -34px;
}

#text-on-heart{
  opacity: 0;
  animation: dudu 3s ease 10s 1 alternate forwards;
  transform-origin: 0 0;
  z-index: 1;
}
#heart{
  opacity: 0;
  animation: dudu 3s ease 10s 1 alternate forwards;
  transform-origin: 0 0;
  z-index: 1;
}

@keyframes dudu {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
} 
