@font-face {
  font-family: "Playwrite US Trad";
  src: url("assets/assets/fonts/PlaywriteUSTrad-VariableFont_wght.woff2")
    format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("assets/assets/fonts/Rubik-VariableFont_wght.woff2") format("truetype");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  background: #fffaf4;
  color: #000;
  font-family: Arial, sans-serif;
}
.loading-container {
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 40px 40px;
  opacity: 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo {
  width: 63px;
  height: 179.72px;
  display: block;
}
.loading-information {
  width: 100%;
  height: 25%;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.chorefire-text {
  margin-top: 10px;
  font-family: "Playwrite US Trad", Arial, sans-serif;
  font-size: 40px;
  font-variation-settings: "wght" 600;
  color: #fb7202;
  line-height: 22px;
  text-align: center;
}
.version-text {
  margin-top: 25px;
  opacity: 0.5;
  font-family: "Rubik", Arial, sans-serif;
  font-size: 12px;
  font-variation-settings: "wght" 600;
  line-height: 22px;
  text-align: center;
  white-space: nowrap;
  color: #676767;
}
.equality-machines-text {
  width: auto;
  margin-top: auto;
  margin-bottom: 10px;
  opacity: 0.5;
  font-family: "Rubik", Arial, sans-serif;
  font-size: 14px;
  font-variation-settings: "wght" 600;
  line-height: 22px;
  text-align: center;
  white-space: nowrap;
  color: #676767;
}
.progress-container {
  margin-top: 10px;
  margin-bottom: 25px;
  width: 90%;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.5;
  background: #000000;
}
.progress-bar {
  width: 2%;
  height: 10px;
  background: #ffffff;
  opacity: 0.5;
}

/* Dark theme styles */
@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #3d2a10;

    color: #ffffff;
  }
  .version-text,
  .equality-machines-text {
    color: #ffffff;
  }
  .progress-bar {
    background: #fb7202;
  }
}
