:root {
  font-size: 100%;
  background-color: rgb(255, 255, 255);
  text-align: center;
  font-family: 'balken'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

.container {
  background-color: black;
  padding: 10px;
  width: auto;
  /* margin: 0; */
  position: relative;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

h1{
color:white;
font-weight: 100;
font-size: 70px;
margin: 0;
letter-spacing: .1rem;
}


span {
    animation-name: foo;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
  }
  
  @keyframes foo {
    from { font-variation-settings: 'wght' 300, 'wdth' 0; }
    to {  font-variation-settings: 'wght' 300, 'wdth' 100;  }
  }

  #s2 { animation-delay: 0.3s; }
  #s3 { animation-delay: 0.6s; }
  #s4 { animation-delay: 0.9s; }
  #s5 { animation-delay: 1.2s; }
  #s6 { animation-delay: 1.5s; }
  #s7 { animation-delay: 1.8s; }
  #s8 { animation-delay: 2.1s; }
  #s9 { animation-delay: 2.4s; }
  #s10 { animation-delay: 2.7s; }
  #s11 { animation-delay: 3s; }
  #s12 { animation-delay: 3.3s; }
  #s13 { animation-delay: 3.6s; }
  #s14 { animation-delay: 3.9s; }