body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff; /* Fond blanc */
}

.loader-container {
    text-align: center;
}

img {
    max-width: 100%;
    max-height: 80vh;
    opacity: 0; /* Commence avec une opacité de 0 */
    animation: fadeIn 3s forwards; /* Animation de fondu-in en 3 secondes */
}

@keyframes fadeIn {
    from {
        opacity: 0; /* Opacité de départ */
    }
    to {
        opacity: 1; /* Opacité finale après 3 secondes */
    }
}
