html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#unity-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#unity-canvas {
  display: block;
  background: white;
}

/* Rotating Circle Animation */
#rotating-circle {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translate(-50%, -50%);
  display: none;
}

#rotating-circle img {
  width: 40px;
  height: auto;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Centered Image Styling */
#centered-image {
  position: absolute;
  left: 50%;
  bottom: 33%;
  transform: translate(-50%, -50%);
  display: none;
}

#centered-image img {
  width: 200px;
  height: auto;
}

/* Fullscreen Button Styling */
#fullscreen-button {
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9999;
}

#fullscreen-button img {
  width: 50px;
  height: 50px;
}

/* Loading Texts Styling */
#loading-texts {
  position: absolute;
  bottom: 5px; /* Positioned at the top center */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgb(150, 146, 146);
  font-family: Arial, sans-serif;
  font-size: 15px;
  z-index: 100;
}

#wait-text {
  margin-bottom: 5px;
}

/* Powered by text styling */
#powered-by-text {
  position: absolute;
  bottom: 250px; /* Positioned at the bottom center */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgb(150, 146, 146);
  font-family: Arial, sans-serif;
  font-size: 17px;
  z-index: 100;
}

#powered-by {
  color: rgb(144, 141, 141);
}

#falcon-reality {
  position: relative; /* Change this to relative */
  right: -5%;
  color: black;
}
#falconlogo {
  position: relative; /* Change this to relative */
  right: -5%;
  bottom: -5%; /* Adjust this value to move the logo up or down */
  width: 18px;
  height: auto;
}
