
  /* Restriction du style uniquement aux balises <i> à l'intérieur de .flag */
  .flag .flag-part {
    width: 25%; /* Réduit la largeur de chaque section à 25% */
    height: 2mm; /* Hauteur fixée à 2mm */
  }

  /* Couleurs pour chaque section */
  .flag .flag-part:nth-child(1) {
    background-color: green; /* Vert */
  }

  .flag .flag-part:nth-child(2) {
    background-color: yellow; /* Jaune */
  }

  .flag .flag-part:nth-child(3) {
    background-color: red; /* Rouge */
  }

  /* Centrage du drapeau */
  .flag {
    display: flex;
    justify-content: center; /* Centrer les sections horizontalement */
    align-items: center;     /* Centrer verticalement (si nécessaire) */
  }



