body {
  background-color: #000080; /* Navy blue */
  font-family: "Courier New", Courier, monospace;
}

.loading {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.title {
  color: #ffffff; /* White for contrast */
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
}

.progress-bar {
  width: 406px;
  height: 10px;
  background: #1e90ff; /* DodgerBlue, variation of blue */
  border-radius: 7px;
  box-sizing: border-box;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.progress {
  width: 10px;
  height: 5px;
  background: #ffffff; /* White for contrast */
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  animation: loading 2s infinite;
}

@keyframes loading {
  0% {
    width: 0;
    background: #ffffff;
  }
  50% {
    width: 200px;
    background: #1e90ff;
  } /* DodgerBlue */
  100% {
    width: 406px;
    background: #ffffff;
  }
}
