:root {
  font-family: 'ruder';
}

.hand {
  position: fixed;
  z-index: 1;
}


h1 {
	text-decoration: none;
	color: #e000ff; 
  font-size: 700px;
  animation-direction: normal;
  animation: my-super-slant 5s infinite;
  line-height: -200%;
  margin-top: 400px;
} 


.container {
  color: #e000ff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}


@keyframes my-super-slant {
  from {  font-variation-settings: "YTUC" 100, "YTLC" 100; text-shadow: 0 0 100px #e000ff; color: transparent;}
  to {  font-variation-settings: "YTUC" 900, "YTLC" 900;  text-shadow: 0 0 0px  #e000ff; color: transparent;}
}

