body, h1, h2 {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: white; /* Text color from the branding */
}

.container {
  background-color: #005DAA; /* Deep blue background color from the branding */
  text-align: center;
  padding: 20px;
}

header {
  padding-bottom: 20px;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

#model-container {
  width: 100%;
  height: 100vh;
  background-color: #022B57; /* Darker blue for the model background */
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #005DAA;
  z-index: 9999;
  color: white;
  font-family: 'Arial', sans-serif;
  font-size: 1.5em;
}

.loading-message {
  margin-bottom: 20px;
}

.waves {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-image: url('./image.png');
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: contain;
  animation: moveWave 10s linear infinite;
}

@keyframes moveWave {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 100%;
  }
}
