@keyframes pacmanEat 
{
  0% {
    clip-path: polygon(100% 74%, 44% 48%, 100% 21%);
  }
  25% {
    clip-path: polygon(100% 60%, 44% 48%, 100% 40%);
  }
  50% {
    clip-path: polygon(100% 50%, 44% 48%, 100% 50%);
  }
  75% {
   clip-path: polygon(100% 59%, 44% 48%, 100% 35%);
  }
  100% {
   clip-path: polygon(100% 74%, 44% 48%, 100% 21%);
  }
}


H1
{
	text-transform: uppercase;
	background: linear-gradient(to right, rgb(241, 203, 10) 0%, #330867 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

button 
{
  position: relative;
  background-color: rgb(161, 137, 13);
  border: none;
  font-size: 28px;
  color: #FFF;
  padding: 20px;
  width: 200px;
  text-align: center;
  transition-duration: 0.4s;
  overflow: hidden;
  cursor: pointer;
  left:50%;
}

button:after 
{
  background: rgb(216, 238, 144);
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px!important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s
}

button:active:after 
{
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s
}

