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

body {
  background-color: #000000;
 
}

.hand {
  position: fixed;
  z-index: 1;
  margin-top: 400px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vw;
  margin-top: -400px;
  color: #e000ff;
  animation: my-super-slant 0.5s infinite alternate;
  font-size: 5000%;
}



@keyframes my-super-slant{
  from {  font-variation-settings: "YTUC" 0; }
  to {  font-variation-settings:  "YTUC" 900; }
}


