* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'fakFont';
  src: url('font/Fak-Regular.woff') format('woff'),
    url('font/Fak-Regular.ttf') format('truetype');
}

body div {
  background-color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

#bgDiv span {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
  font-family: 'fakFont';
  font-size: 40px;
  }

#progressBarBackground {
  width: 60%;
  height: 50px;
  left: 20%;
  top: 40%;
  border: 1px black solid;
  border-radius: 8px;
  overflow: hidden;
}

#progressBarForeground {
  background-image: url(img/loadingBarImage.png);
  background-size: auto 100%;
  filter: grayscale(100%);
  width: 0%;
  margin: 4px;
  max-height: calc(100% - 8px);
  max-width: calc(100% - 8px);
  border-radius: 5px;
}
