html {
   overflow: hidden;
}
body {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
p{
  color: black;
  font-variation-settings: 'wdth' 10,'wght' 5; 
  font-size: 16.1rem;
  line-height: 0.73;
  letter-spacing: -0.4rem;
  margin: 0;  
}
#Moma1 {
  transform-origin: top center;
  animation: my-moma 2s 0s infinite alternate;
}
#Moma2 {
  transform-origin: top center;
  animation: my-moma 2s 1s infinite alternate;
}
#Moma3 {
  transform-origin: top center;
  animation: my-moma 2s 2s infinite alternate;
}
#Moma4 {
  transform-origin: top center;
  animation: my-moma 2s 3s infinite alternate;
}
@keyframes my-moma {
  from {
    font-size: 16.1rem;
    font-variation-settings: 'wdth' 10,'wght' 5; 
  }
  to {
    font-size: 20.5rem;
    font-variation-settings: 'wdth' 1,'wght' 400;
    line-height: 0;
  }
}
