body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column; /* Ensure app content flows vertically */
  min-height: 100vh; /* Ensure at least viewport height */
  background-color: #ffffff;
}

.splash-screen {
  text-align: center;
  flex-grow: 1; /* Expand to fill remaining space */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.message {
  text-align: center;
  flex-grow: 1; /* Expand to fill remaining space */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

/* Main Content Styles (for demonstration) */
.main-content {
  padding: 80px 20px 20px; /* Add top padding to content to account for app bar height */
}

.content {
  max-width: 400px;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.splash-screen img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.splash-screen p {
  font-size: 20px;
  color: #333333;
  font-weight: bold;
  margin: 0;
}

/** I have resized it because I am using it as app bar title **/ 
h1 {
  font-size: 20px;
}