/* Réinitialisation de base */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f9f2e0; /* Couleur de fond unie */
}

/* Conteneur principal: Centrage Flexbox global */
.logo-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center; /* Centrage Horizontal */
    align-items: center;    /* Centrage Vertical */
}

/* Conteneur interne: Disposition verticale */
.content-wrapper {
    display: flex;
    flex-direction: column; /* Disposition verticale */
    align-items: center;    /* Centrage des éléments à l'intérieur du wrapper */
    max-width: 90%;
}

/* Style de l'image du logo */
.logo {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 80vh;
    /* >>> SUPPRESSION DE LA MARGE INFÉRIEURE POUR COLLER LE NUMÉRO <<< */
    margin-bottom: 0; 
}