body {
    margin: 0;
    overflow: hidden; /* Prevent scrolling while splash screen is visible */
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* Background color for splash screen */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure splash is on top */
    transition: transform 0.5s ease-in-out; /* Smooth transition for sliding up */
}

.splash-logo {
    width: 50%; /* Adjust logo size */
    max-width: 200px; /* Maximum width for the logo */
    animation: fadeIn 1s ease-in-out; /* Change to fadeIn effect */
}

/* Keyframe for Fade In effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
