/* Splash Screen Styles */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3b3b41;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;    /* Center vertically */
  z-index: 9999;
}

#splash-screen img {
  width: 150px; /* Logo size */
  height: auto;
  animation: fadeIn 1.5s ease-in-out; /* Apply fade-in animation */
}

#splash-texts {
  display: flex;
  flex-direction: column; /* Stack text vertically */
  margin-left: 20px; /* Space between logo and texts */
  animation: fadeIn 1.5s ease-in-out; /* Apply fade-in animation */
}

#splash-texts .title {
  font-family: 'Red Hat Display', sans-serif; /* Apply Red Hat Display font */
  font-size: 50px; /* Font size for GymCon */
  font-weight: bold;
  color: white;
  margin: 0;
}

#splash-texts .subtitle {
  font-family: 'Red Hat Display', sans-serif; /* Apply Red Hat Display font */
  font-size: 26px; /* Font size for the subtitle */
  color: white;
  margin: 0;
}

/* Fade in animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}
