*
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #111;
  color: #eee;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mainDiv {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.contentDiv {
  margin-top: auto;
  margin-bottom: auto;
}

.brandName {
  font-size: 3em;
  margin-bottom: 0.5em;
  color: #fff;
  letter-spacing: 0.05em;
  font-family: fantasy;
}

.statusMessage {
  font-size: 1.2em;
  color: #aaa;
  margin-bottom: 2em;
}

.loadingIndicator {
  width: 48px;
  height: 0.3em;
  background-color: #444;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.loadingIndicator::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: #09f;
  animation: slideBar 2s infinite ease-in-out;
}

@keyframes slideBar {
  0% {left: -50%;}
  100% {left: 100%;}
}

/* FOOTER */

footer {
  width: 100%;
  color: #fff;
  padding-top: 10px;
  position: relative;
  background-color: #000;
}

.footerTextDiv {
  height: auto;
  text-align: center;
  font-size: 1.2em;
  color: #fff;
  width: 100%;
  justify-content: center;
  padding-top: 05px;
}

.footerText {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footerText h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif
}
.footerText p {
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 400px;
}

.studioDiv {
  text-align: center;
}

.studioDiv > img {
  width: 96px;
  padding-bottom: 25px;
}

.lastUpdatedText {
    color: #666;
    font-size: 0.7em; /* Using em for font size */
    margin: 0;
}