:root {
  font-size: 100%;
  font-family: 'invert'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}
body {
  background: black;  
  display: grid;
  place-items: center;
  height: 100vh;
  margin: 0;

}
h1 {
  position: absolute;
  top: 10%;
  font-size: 100px;
  text-align: center;
  /*animation*/
  animation-name: moveit;
  animation-duration: 3s;
  animation-direction: alternate;
  animation-iteration-count: infinite;

 
}
h1 {
  color: white;

}

@keyframes moveit {
 
  from {

    font-weight: 1;
  }
  to {

    font-weight: 950;
  }
}