* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#transition-div {
    position: fixed; /* Fixed to cover the whole viewport */
    top: -100%; /* Starts off-screen */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Background color 46A29F */
    opacity: 1;
    z-index: 1000; /* Ensure it's above everything */
/*    visibility: hidden;*/
}

#lig-rev {
    position: fixed;
    left: 50%;
    animation:fadeIn 0.25s linear forwards;
    transform: translate(-50%, 0%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

/* Slide-down and fade-in animation */
@keyframes slideDownFadeIn {
    0% {
        top: -100%; /* Start off-screen at the top */
        opacity:0;
    }
    100% {
        top: 0; /* Ends at the top of the screen */
      opacity:1;
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
		visibility: visible;
    }
    100% {
        opacity: 1;
    }
}
