body {
  margin: 0;
  padding: 0;
}

.loading-screen {
  background: rgba(13, 0, 255, 0.78);
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-screen .progressbar {
  border: 2px solid white;
  border-radius: 5px;
  width: 300px;
  height: 30px;
  display: flex;
  padding: 3px;
}

.loading-screen .progressbar .progress {
  height: 30px;
  width: 50px;
  background: white;
  transition: all 300ms linear;
}