body {
  background: #222222;
  font-family: "Helvetica Neue","Helvetica",Arial,"Lucida   Grande",sans-serif;
}

h3 {
  font-size: 1.5em;
  font-weight: 100;
  letter-spacing: 1em;
  text-shadow: 0px 0px 20px #1abb9c;
  color: #1abb9c;
  display: inline-block;
}

.container {
  font-size: 16px;
  width: 100%;
/*   top: 50%;
  left: 40%; */
/*   position: absolute; */
  color: #FFFFFF;
  text-align: center;
  margin-top: auto; /* Damit der "Ausrichtungspunkt" in der Mitte der Box liegt */
  margin-left: auto;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%)
}

.bar {
  height: .3em;
  width: 30em;
  border-radius: 10px;
  background: transparent;
  box-shadow: inset 0px 0px 8px #323232;
  overflow: hidden;
  padding: 5px;
  margin: auto;
}

.progress {
  height: inherit;
  border-radius: inherit;
  width: 0;
  background: #1abb9c;
  animation: load 3s linear infinite;
  animation-delay: 2s;
  margin: left;
}

@keyframes load {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
    float: right;
  }
}
