:root {
  font-size: 1000%;
  font-family: 'DynaPuff'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
  background-color: #1D1D1D;
}

h1 {
  color: #FFC5F4;
  justify-self: center;
  font-weight: 700;
  animation: my-anim 1s infinite alternate;
}

@keyframes my-anim {
  from { font-variation-settings: 'wdth' 75, 'wght' 400;}
  to { font-variation-settings: 'wdth' 100, 'wght' 700;}

}

