   /* Reset and common styles */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  
  /* Splash screen container */
  #splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
  }
  
  /* Logo container */
  .logo-container-splash {
    text-align: center;
  }
  
  /* Logo image */
  .logo-container-splash img {
    max-width: 400px;
    height: auto;
  }
  
  /* Logo text */
  .logo-text {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
  }
  
  /* Hidden splash screen */
  .splash-hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  
  .content-visible {
    opacity: 1 !important;
  }

  @media(max-width: 500px) {
    .logo-container-splash img{
        width: 200px;
    }
  }