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

body {
  background-color: rgb(0, 0, 0);
  margin-top: 20px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

}

h1 {
  color: white;
  justify-self: center;
  animation: my-anim 1s infinite alternate ease-in-out;
}


@keyframes my-anim {
  0% { font-variation-settings: 'wght' 100;}
  100% { font-variation-settings: 'wght' 900;}
  0% { transform: translateY(0);}
  50% { transform: translateY(-10px);}
  100% {transform: translateY(0);}
}

