/* Full-page container */
#animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ADD8E6, #FFFFFF); /* Light blue to white gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Stay on top */
}

/* Animation for the text */
.text-animation {
    font-family: Arial, sans-serif;
    font-size: 40px;
    color: #000000;
    opacity: 0;
    animation: fadeInOut 3s ease-in-out forwards; /* Animation duration is 3 seconds */
}

/* Animation keyframes */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}
