body {
  background-image: url('bg_skymountain.png');
  background-size: cover;
  background-position: center 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100svh;
  margin: 0;
  overflow: hidden;
}

@font-face {
  font-family: 'LoadingFont';
  src: url('ARCSansV1-SVG.ttf') format('truetype');
}

@font-face {
  /* font-family: 'Dosis', sans-serif; */
  font-family: 'IBM Plex Sans';
  src: url('./IBM_Plex_Sans/IBMPlexSans-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'NumberFont';
  src: url('Rubik-VariableFont_wght.ttf') format('truetype');
}

.loading {
  font-family: 'LoadingFont', Arial, sans-serif;
  font-size: 2.25rem;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
}

.number {
  font-family: 'NumberFont', Arial, sans-serif;
  font-size: 3rem;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
}

.centered-content {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}

.loading-dots .dot {
  display: inline-block;
  margin: 0;
  opacity: 0;
  animation: blink 0.8s infinite;
}

.loading-dots .dot:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.support-text {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 550;
  text-align: center;
  line-height: normal;
}

.logo-arc {
  position: absolute;
  left: 4rem;
  top: 28px;
  width: 37px;
  height: 37px;
  z-index: 1;
}

.logo-image {
  width: 32px;
  height: 32px;
}

.helper-text {
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  font-size: 14px;
  text-align: center;
  line-height: normal;
  margin: 12px 0 2rem 0;
}

.btn-home {
  display: flex;
  padding: 1.25rem 2.875rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border-radius: 3.125rem;
  background: #111;
  color: #D9BDCE;
  font-size: 10px;
  border: 2px solid #111; /* Set the initial border color to match the background color */
  transition: background-color 0.3s, border-color 0.3s; /* Add smooth transitions for color changes */
}

.btn-home:active {
  background-color: #2E2E52; /* Change background color on button press */
  border-color: #2E2E52; /* Change border color on button press */
}

.stellar-heading {
  text-align: center;
  font-weight: normal;
  margin-bottom: 12px;
  font-size: 2.25rem;
  font-family: 'LoadingFont', Arial, sans-serif;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

@media screen and (max-width: 1190px) {
  .desktop-ui {
    display: none;
  }

  .mobile-ui {
    display: block !important;
  }

  .logo-arc {
    left: 2rem;
  }
}

.mobile-ui {
  display: none;
}

#unity-canvas {
    width: 100vw !important;
    height: 100vh !important;
}

::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
}

#unity-container.unity-desktop {
    left: 0;
    top: 0;
    transform: translate(0, 0);
}
