body,
html {
  height: 100%;
  margin: 0;
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  letter-spacing: 0.25em;
  color: #EEE;
  background-color: #232935;
}

.bg {
  /* The image used */
  background:
    linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)), url("gfx/bg.jpg");

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.center {
  margin: 0;
  position: absolute;
  top: 40%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

h1 {
  text-transform: uppercase;
  font-size: 4em;
}

h2 {
    font-size: 2em;
}

.progress {
  width: 60%;
  margin: 100px auto;
}

.progress-bar {
  background-color: #999;
  width: 100%;
  display: inline-block;
}

.progress-value {
  animation: load 5s normal forwards;
  background: #a6c837;
  height: 20px;
  width: 0;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 77%;
  }
}

.progress-label-left,
.progress-label-right {
  width: 50%;
  margin: 0px;
  padding: 0px;
  font-size: 0.8em;
}

.progress-label-left {
  float: left;
  text-align: left;
}

.progress-label-right {
  float: right;
  text-align: right;
}

.footer {
  position: absolute;
  bottom: 0px;
  text-align: center;
  font-size: 0.8em;
  width: 100%;
}

a {
  text-decoration: none;
  color: #a6c837;
}
a:hover {
  text-decoration: none;
  color: #a6c837;
}