* {
    overflow: hidden;
}
body {
  height: 90vh;
}
p{
  font-family: 'Antarctica Trial';
  color: black;
  font-size: 20rem;
  font-variation-settings: 'wdth' 100, 'wght' 800, 'CNTR' 0, 'ital' 0;
  margin: auto;
  animation: my-moma 2s infinite alternate;
}
@keyframes my-moma {
  from { font-variation-settings: 'wdth' 100, 'wght' 800, 'CNTR' 0, 'ital' 0;}
  to {font-variation-settings: 'wdth' 100,'wght' 10, 'CNTR' 0, 'ital' 12;}
}

