
#splash_screen_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    transition: opacity 1.5s ease;
    opacity: 1;
    pointer-events: auto;
    background-color: #066C08;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#splash_screen_container.hidden {
    opacity: 0;
    pointer-events: none;
}

#splash_screen_container.removed {
    display: none;
}

#img_logo_splash_screen {
    display: block;
    width: 25%;
}

#img_full_logo_splash_screen {
    display: block;
    height: 5%;
}

#text_loading {
    color: white;
    font-size: 30px;
}