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

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

.T {
  color: gray;
  width: auto;
  line-height: 10px;
  transition: all 0.3s ease;
  font-variation-settings: 'wght' 900;
  font-variation-settings: 'slnt' 45;
}

.T:hover {
  transition: all 0.3s ease;
  font-variation-settings: 'slnt' -45;
  font-variation-settings: 'wght' 900;
}

.TREV { 
  color: white;
  /* transform: rotate(180deg); */
  transition: all 0.3s ease;
  line-height: 0px;
  font-variation-settings: 'slnt' -45;
}
.TREV:hover {
  font-variation-settings: 'slnt' 45;
  transition: all 0.10s ease;
}