/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column; /* Aligne le contenu verticalement */
    justify-content: center; /* Centre verticalement */
    align-items: center; /* Centre horizontalement */
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Zone du logo au centre */
.conteneur-central {
    margin-bottom: 40px; /* Espace entre le logo et la bande */
    text-align: center;
}

.logo {
    max-width: 250px; /* Ajustez la taille maximale de votre logo ici */
    height: auto;
    display: block;
}

/* Structure de la bande bleue */
.bande-bleue {
    width: 100%;
    background-color: #0056b3;
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Conteneur de l'animation */
.defilement {
    display: inline-block;
    padding-left: 100%;
    animation: defilement-horizontal 15s linear infinite;
}

/* Style du texte */
.defilement span {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation du défilé */
@keyframes defilement-horizontal {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
