:root {
  font-family: 'harber'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
  font-size: 30vh;
  color: rgb(255, 255, 255);
  align-self: center;
}

body {
  background-color: white;
  margin-top: 30px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

}

.flex1 {
  animation: my-anim2 2s infinite alternate;
}


@keyframes my-anim2 {
  from {font-variation-settings: 'VVLM' -10, 'wght' 0, 'slnt' -10;}
  to {font-variation-settings: 'VVLM' 10, 'wght' 10, 'slnt' 10;}
  from {filter: drop-shadow(0 0 0 rgb(0, 0, 0));;}
  to {filter: drop-shadow(0 0 0.01rem rgb(0, 0, 0));;}
	
}