:root {
  background-color: black;
  text-align: center;
  font-family: 'muller next'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body{
height: 100vh;
display:flex;
justify-content: center;
align-items: center;
}

h1{
color:white;
font-size: 200px;
line-height: 90px;
animation: my-super-slant 5s infinite alternate;
/* mix-blend-mode: exclusion; */
/* -webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black; */
text-shadow: 0px 0 green, 0 0px violet, 0px 0px blue, 0 0px red;
}

@keyframes my-super-slant {
  from { font-variation-settings: 'wght' 10, 'wdth' 100; font-size: 100px; text-shadow: 0px 0 green, 0 0px violet, 0px 0px blue, 0 0px red; }
  to {  font-variation-settings: 'wght' 900, 'wdth' 400; font-size: 200px; text-shadow: 0px 0 green, 0 20px violet, 0px 20px blue, 0 20px red; }
}