html {
   overflow: hidden;
}
body {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: black;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
p{
  color: white;
  font-size: 16.1rem;
  font-variation-settings: 'wdth' 100,'wght' 600;
  line-height: 0.73;
  margin: 0;
}
#Moma1 {
  font-variation-settings: 'wdth' 100,'wght' 600, 'CNTR' 0, 'ital' 0;  
  animation: my-moma 3s infinite alternate;
}
#Moma2 {
  font-variation-settings: 'wdth' 100,'wght' 600, 'CNTR' 100, 'ital' 12;
  transform: scaleY(-1); 
  opacity: 0.8;
  animation: my-moma2 3s infinite alternate;
  margin-bottom: -3.4rem;
}
@keyframes my-moma {
  from {font-variation-settings: 'wdth' 100,'wght' 600, 'CNTR' 0,'ital' 0; }
  to {font-variation-settings: 'wdth' 1,'wght' 60, 'CNTR' 100,'ital' 12;}
}
@keyframes my-moma2 {
  from {font-variation-settings: 'wdth' 100,'wght' 600, 'CNTR' 0, 'ital' 12;}
  to {font-variation-settings: 'wdth' 1,'wght' 60,'CNTR' 100, 'ital' 0;}
}