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

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



.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  font-size: 150px;
}

.flex-container div {
height: 150px;
width: min-content;
padding: 30px;
}


.otto1 {
  color: #e000ff;
  animation: my-super-slant 5s infinite alternate ease-in-out;
  animation-delay: 0.2s;
  background-color: #980033;
  border-radius: 50px;
  font-family: 'nickel';
} 


.otto2 {
  color: #980033;
  animation: my-super-slant 4s infinite alternate ease-in-out;
  animation-delay: 0.9s;
  background-color: #e000ff;
  border-radius: 50px;
} 

.otto3 {
  color: #e000ff;
  animation: my-super-slant 4.5s infinite alternate ease-in-out;
  animation-delay: 0.3s;
  border-radius: 50px;
  background-color: #980033;
}

.otto4 {
  color: #980033;
  animation: my-super-slant 5.2s infinite alternate ease-in-out;
  animation-delay: 1s;
  background-color: #e000ff;
  border-radius: 50px;
}

.otto5 {
  color: #e000ff;
  animation: my-super-slant 3.8s infinite alternate ease-in-out;
  animation-delay: 0.3s;
  background-color: #980033;
  border-radius: 50px;
}


@keyframes my-super-slant{
  from {  font-variation-settings: "wdth" 25, "slnt" -15; }
  to {  font-variation-settings:  "wdth" 150, "slnt" 15; }
}
