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

h1 {
  justify-self: center;
  color: #1D1D1D;
  margin: -40px;
  font-size: 1000%;
  font-variation-settings: 'wdth' 75, 'wght' 700;
  animation: my-anim3 2s infinite alternate;
}

h2 {
  justify-self: center;
  color: #FF352A;
  margin: -40px;
  font-size: 1000%;
  font-variation-settings: 'wdth' 75, 'wght' 700;
  animation: my-anim3 2s infinite alternate;
}
h3 {
  justify-self: center;
  color: #FFC5F4;
  margin: -40px;
  font-size: 1000%;
  font-variation-settings: 'wdth' 75, 'wght' 700;
  animation: my-anim3 2s infinite alternate;
}

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

}


