html {
   overflow: hidden;
}
body {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
p{
	font-family: 'Recursive';
  font-variation-settings: 'MONO' 0, 'CASL' 0, 'wght' 300, 'slnt' 0, 'CRSV' 0;
  font-size: 24rem;
  letter-spacing: -0.5rem;
  line-height: 0.5;
  margin: 0;  
}
#Moma1 {
  animation: my-moma 3s ease-in-out 0s infinite alternate;
}
#Moma2 {
  animation: my-moma 3s ease-in-out 1s infinite alternate;
}
#Moma3 {
  animation: my-moma 3s ease-in-out 2s infinite alternate;
}
#Moma4 {
  animation: my-moma 3s ease-in-out 3s infinite alternate;
}
@keyframes my-moma {
  0% {
    font-variation-settings: 'MONO' 0, 'CASL' 0, 'wght' 300, 'slnt' 0, 'CRSV' 0;
  }
  100% {
    font-size: 18rem;
    font-variation-settings: 'MONO' 1, 'CASL' 0, 'wght' 1000, 'slnt' 0, 'CRSV' 0;
    line-height: 0;
  }
}
