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

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

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

.flex-container div {
height: 1200px;
}


.otto1 {
  color: #e000ff;
  animation: my-super-slant 2s infinite alternate ease-in-out;
  animation-delay: 0.2s;
  background-color: #980033;
  border-radius: 50px;
  padding: -10px;
} 


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

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

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

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



@keyframes my-super-slant{
  from {  font-variation-settings: "YTUC" 100; transform: translateY(0px) }
  to {  font-variation-settings:  "YTUC" 900; transform: translateY(600px)}
}
