#pre-bootstrap {
  background-color: #4d217a;
  bottom: 0px;
  left: 0px;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#pre-bootstrap .messaging {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  text-align: center;
}

#pre-bootstrap h1 {
  font-size: 28px;
  line-height: 36px;
  margin: 10px 0 20px 0;
  color: #f2f2f2;
}

#pre-bootstrap .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#pre-bootstrap p {
  font-size: 18px;
  line-height: 24px;
  margin: 10px 0 0 0;
  color: #cccccc;
}
