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

body {
  background-color: #000000;
}

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



O1:hover {
  animation: my-super-slant 0.5s infinite alternate;
}

T1:hover {
  animation: my-super-slant 0.5s infinite alternate;
}


T2:hover {
  animation: my-super-slant 0.5s infinite alternate;
}


O2:hover {
  animation: my-super-slant 0.5s ;
  color: #e000ff;

}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vw;
  color: #e000ff;
  font-size: 500px;
}




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


