#lottie_container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;  /* Änderung von absolute zu fixed */
    top: 0;
    left: 0;
    z-index: 9999;  /* Erhöhter z-index-Wert */
    background-color: rgba(255, 255, 255, 0.8);  /* Hintergrundfarbe für den gesamten Container */
}

#lottie_animation {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lottie_animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    pointer-events: none;
}

#lottie_text {
    font-family: 'Tangerine', cursive;
    font-size: 3rem;
    color: #d00d03;
    z-index: 10000;  /* Erhöhter z-index-Wert */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-shadow: 2px 2px 4px rgba(224, 22, 22, 0.5);
}