: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;
}

.T{
color:white;
font-size: 500px;
line-height: 0px;
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;
}

.SALI{
  color:white;
  font-size: 200px;
  line-height: 0px;
  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;
  }

.TABACCHI{
  color:white;
  font-size: 200px;
  line-height: 0px;
  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' 800, 'wdth' 90; font-size: 200px; line-height: 150px;}
  to {  font-variation-settings: 'wght' 900, 'wdth' 400; font-size: 200px; line-height: 0px;}
}