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

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 1s infinite ;
  font-size: 2200%;
}



@keyframes my-super-slant{
  from {  font-variation-settings: "wght" 0; transform: rotate(0deg); font-size: 10%; }
  to {  font-variation-settings:  "wght" 900; transform: rotate(360deg); font-size: 2200%;}
}


