@font-face {
  font-family: 'Inter';
  src: url(Inter-VariableFont_opsz_wght.ttf);
}

@font-face {
  font-family: 'Sora';
  src: url(Sora-VariableFont_wght.ttf);
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 90, 78, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#bodyContainer {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Sora';
  background-color: rgba(0, 90, 78, 1);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.header-container {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  z-index: 10;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5em;
}

.loading-info-text {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-top: 0.5rem;
  z-index: 10;
}

.river {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: fill;
  z-index: 1;
}

#fact-roller {
  position: fixed;
  bottom: 0;
  margin-bottom: 50px;
}

@media (max-width: 500px) {
  .logo {
    width: 50%;
  }
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.loading-spinner {
  border: 15px solid rgba(231, 231, 231, 1);
  border-left-color: rgba(0, 229, 74, 1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  z-index: 10;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-info-text {
  text-align: center;
  margin-top: 10px;
  font-family: "Sora";
  font-weight: 700;
  font-size: 30px;
}

#fact-roller {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #555;
}

.logo {
  display: block;
  margin: 20px auto;
}