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

h1 {
  justify-self: center;
  font-size: 500%;
  font-variation-settings: 'wdth' 75, 'wght' 700;
  animation: my-anim3 1s infinite alternate;
}

@keyframes my-anim3 {
  from {font-variation-settings: 'wdth' 75, 'wght' 400;}
  to {font-variation-settings: 'wdth' 100, 'wght' 700;}
  from {color:#1D1D1D}
  to {color:#FFC5F4}
  from {font-size: 1000%;}
  to {font-size: 6000%;}

}


