/* Splash screen full screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f2dec5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Animate image across screen in 1 second */
#splash-image {
    height: 50vh;
    animation: moveAcross 1.2s linear forwards;
    z-index: 2;
}

#splash-image-behind {
    height: 20vh;
    animation: moveAcrossBehind 1.4s linear forwards;
    z-index: 1;


}

@keyframes moveAcross {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100vw);
    }
}


@keyframes moveAcrossBehind {
    100% {
        transform: translateX(-700%);
    }

    0% {
        transform: translateX(100vw);
    }
}

/* Main content is hidden initially */
#main-content {
    display: none;
}