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

body {
  background-color: #000000;}

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

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-container div {
  width: 70px;
  margin: 40px;
  text-align: center;
  line-height: 20px;
  font-size: 80px;
  cursor: pointer;
}

.flex-container div:hover {
  color: #e000ff;
  animation: my-super-slant 0.3s infinite alternate;
}


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



