* {
    overflow: hidden;
}
body {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
}
p{
  color: black;
  font-size: 20rem;
  font-variation-settings: 'wdth' 2,'wght' 400;
  text-align: center;
  line-height: 0.77;
  margin-bottom: -0.77rem;
}
#Moma1 {
  transform-origin: center top;
  animation: my-moma 2s 0s infinite alternate;
}
#Moma2 {
  transform-origin: center top;
  animation: my-moma 2s 1s infinite alternate;
}
#Moma3 {
  transform-origin: center top;
  animation: my-moma 2s 2s infinite alternate;
}
#Moma4 {
  transform-origin: center top;
  animation: my-moma 2s 3s infinite alternate;
}
@keyframes my-moma {
  from {
    font-variation-settings: 'wdth' 2,'wght' 400;
  }
  to {
    font-variation-settings: 'wdth' 10,'wght' 5; 
    font-size: 21rem; 
    line-height: 0;
  }
}