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

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


h1 {
	text-decoration: none;
	color: #e000ff; 
  font-size: 70px;
  animation: my-super-slant 5s infinite alternate;
} 


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



@keyframes my-super-slant {
  0% {   transform: scale(0,0)}
  100% {  transform: scale(200, 400);}
}
