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

body {
  background-color: #000000;

}

.hand {
  position: fixed;
  z-index: 1;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vw;
}

h1 {
  color: #e000ff;
  animation: my-super-slant 0.7s infinite alternate;
  font-size: 4500%;
}


@keyframes my-super-slant{
  from {  font-variation-settings:"CRSV" 0; font-size: 40%; }
  to {  font-variation-settings:  "CRSV" 0;  font-size: 5000%; }
}


