/* splashstyle.css */

#splash-screen {
    position: fixed; /* Ensures it covers the whole screen regardless of scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Viewport height */
    background-color: #ffffff; /* Use your brand color */
    display: flex; /* Use flexbox to center content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 9999; /* Ensures it is on top of all other elements */
    /* Optional: Add animations or a background image */
}

/* Hide the main content initially */
#main-content {
    visibility: hidden;
}
