#load_window{
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    z-index: 10;
    animation: fadeout-animation 3s ease forwards;
}
@keyframes fadeout-animation {
0% {
    opacity: 1;
}
100% {
    display: none;
    opacity: 0;
}
}
#load_window_logo{
    width: 50vw;
    aspect-ratio: 1/1;
    object-fit: contain;
}