html,
body {
  background-color: #262524;
  height: 100%;
  width: 100%;
  margin: 0;
  background-image: url('img/background.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preLoading {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loadingLogo {
  margin-top: 28%;
  width: 30%;
  padding: calc(20 * 100vw / 750);
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.3);
}

#loadingErrText {
  margin-top: auto;
  margin-left: 15%;
  margin-right: 15%;
  font-size: calc(24 * 100vw / 750);
  color: #dec79c;
  text-align: center;
}

.loadingText {
  margin-top: auto;
  margin-bottom: 12%;
  font-size: calc(30 * 100vw / 750);
  color: #dec79c;
}