body{
	background: rgb(230, 230, 235);
	overflow: hidden;
}

model-viewer {
  height: 110vh;
  margin-top: -40px;
  width: 100vw;
  margin-bottom: 0px;
  display: block;
  position: relative; /* Set the position to relative */
  z-index: 1; /* Set a z-index value */
}

#texts {
  font-family: 'Roboto', sans-serif;
  color: white;
  display: block;
  position: absolute; /* Set the position to absolute */
  bottom: 0px; /* Adjust this value based on your design */
  left: 50%; /* Adjust this value based on your design */
  transform: translate(-50%, -50%); /* Center the element */
  text-align: center;
  max-width: 70%;
  width: fit-content;
  z-index: 2; /* Set a higher z-index value than the model-viewer */
  background: rgba(150, 150, 160, 0.3);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  padding: 20px;
  border-radius: 15px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255,255,255,0.6);
		box-shadow: 0px 1px 20px 5px rgba(0,0,0,0.1);

}


#title{
	font-weight: 600;
	font-size: 30px;
}

#description{
	font-weight: 300;
	font-size: 17px;
	margin-top: 6px;
}

@media only screen and (max-width: 600px) {
	#title {
		font-size: 16px; /* Adjust size for mobile */
	}

	#description {
		font-size: 11px; /* Adjust size for mobile */
	}
}

#loading-container {
	  position: fixed;
	  top: 0;
	  left: 0;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  flex-direction: column;
	  height: 100vh; 
	  width: 100%;
	  z-index: 99999;
	  background: #232323;
}


#loading-spinner {
  border: 8px solid #232323;
  border-top: 8px solid #f3f3f3;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

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

#loading-text {
  margin-top: 20px;
  font-family: 'Roboto', sans-serif;
  color: #f3f3f3;
  margin: 20px;
  max-width: 500px;
/*	  margin-left: 40px;*/
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.2em;
}

#loading-percentage {
  font-family: 'Roboto', sans-serif;
  color: #f3f3f3;
  max-width: 500px;
  margin-left: 40px;
  font-weight: 700;
  font-size: 1em;
  line-height: 1em;
}