    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color:  #6d88e2;
      color: #83b8e9;
      line-height: 1.6;
    }

    header {
      background-color: #791ce4a9;
      color: #070407cb;
      padding: 12px 0;
      text-align: center;
      animation: slideIn 2s ease-out; /* Animation pour l'en-tête */
    }

    header h1 {
      margin: 0;
      font-size: 2.5em;
      opacity: 0; /* Commence caché */
      animation: fadeIn 2s forwards; /* Animation du texte */
    }

    /* Animation du fondu de l'en-tête */
    @keyframes fadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }

    /* Animation de glissement de l'en-tête */
    @keyframes slideIn {
      0% {
        transform: translateY(-100%);
      }
      100% {
        transform: translateY(0);
      }
    }

  #video-fond {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1000;
}

  #video-fond video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Couvre tout l'écran sans déformation */
}

  .container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #6200ff86;
    box-shadow: 0 4px 8px rgba(1, 69, 255, 0.1);
    border-radius: 8px;
}

  .section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #111111b4;
    text-align: center;
}

  .content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #181818be;
}
    
  .content-center {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #111111b4;
    text-align: center;
}
    
  .conteneur-bouton {
    text-align: center; /* Centre les éléments en ligne comme les liens */
    margin-top: 0px;   /* Pour l’espace si besoin */
}

  .button {
    display: inline-block;
    background-color:  #3900bdd3;
    color: rgba(33, 197, 202, 0.767);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

  .button:hover {
    background-color:  #26105a;
    box-shadow: 0 8px 12px rgba(225, 1, 255, 0.753);
}

  .cligno {
    animation: rainbow 4s linear infinite;
  }

  .linear-gradient {
    background:
      linear-gradient(217deg, rgba(140, 0, 255, 0.8), rgba(255, 0, 0, 0) 70.71%),
      linear-gradient(127deg, rgba(255, 0, 157, 0.8), rgba(0, 255, 0, 0) 70.71%),
      linear-gradient(336deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0) 70.71%);
}

  footer {
    text-align: center;
    padding: 1px 0px;
    background-color: #791ce4a9;
    color: #161616;
    position: fixed;
    bottom: 0;
    width: 100%;
    opacity: 0;
    animation: slideUp 2s ease-out forwards;
    animation-delay: 0s; /* attend que le header ait fini */
}

  /* Animation pour le footer */
  @keyframes slideUp {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
}

  /* Animation pour le clignotement */
  @keyframes rainbow {
    0% { 
      color: #5293a7;
    }
    25% { 
      color: rgba(233, 103, 211, 0);
    }
    50% { 
      color: #db33b7;
    }
    75% { 
      color: rgba(233, 103, 211, 0);
    }
    100% { 
      color: #5293a7;
    }
}

    
  /* Couleur de base des liens */
  a {
    color: #5293a7;
    text-decoration: none; /* Supprime le soulignement par défaut */
    font-weight: bold;
    transition: color 0.3s ease;
}
    
  /* Couleur des liens au survol (hover) */
  a:hover {
    color: rgba(33, 197, 202, 0.767);
}
  .cligno:hover {
    text-shadow: 0 8px 12px rgba(225, 1, 255, 0.753);
  }

  /* Animation d’apparition */
  @keyframes fadeInUp {
    0% {
      transform: translate(-50%, -60%);
      opacity: 0;
    }
    100% {
      transform: translate(-50%, -50%);
      opacity: 1;
    }
}

	table {
	  border-width:1px; 
	  border-style:solid; 
	  border-color:black;
	  box-shadow: 1px 1px 1px black;
}
	
	th {
	  border-width:1px; 
	  border-style:solid; 
	  border-color:black;
	  box-shadow: 1px 1px 1px black;
}
	
	td {
	  border-width:1px; 
	  border-style:solid; 
	  border-color:black;
	  box-shadow: 1px 1px 1px black;
}