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

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

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

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

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' 200, 'wdth' 100; font-size: 100px; }
    to {  font-variation-settings: 'wght' 100, 'wdth' 100; font-size: 200px; }
  }

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