/* Réinitialisation des styles par défaut */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      color: #000;
      background-image: radial-gradient(circle at center,rgba(139, 4, 124, 1), black);
      background-attachment: scroll;
      background-repeat: repeat-y;
      background-position: center top;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
  }
  

  /* Container principal pour centrer le contenu */
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
  }



  
  .container img, header img {
    width: 100%; /* L'image occupe la largeur complète du conteneur */
    height: auto; /* Préserve les proportions */
    object-fit: cover; /* Remplit harmonieusement le conteneur, optionnel */
    display: block; /* Évite les espaces autour des images */
}

  .contenu {
      border:solid 2px fuchsia; 
      background-color: #9f9f9f;
      border-radius: 15px; 
      margin-top:  15px; 
      max-width: 98%;
      background-color: rgba(255,255,255, 0.2); 
      color:white; 
  }

  img {
    max-width: 100%; /* L'image ne dépasse jamais son conteneur */
    height: auto; /* Maintient les proportions */
    display: block; /* Évite les espaces autour */
    object-fit: cover; /* Optionnel selon vos besoins */
}

  .texte {
    padding: 20px;
    color:white; 

  }
  
  .embed-responsive {
    position: relative;
    display: block;
    width: 100%; /* La div prend toute la largeur disponible */
    height: 0;
    padding-bottom: 56.25%; /* Maintient un ratio 16:9 */
    overflow: hidden; /* Cache tout débordement */
    max-width: 100%; /* Empêche la div de dépasser son conteneur parent */
    border-radius: inherit; /* Applique le même arrondi que .contenu si nécessaire */
}

.embed-responsive iframe,
.embed-responsive video,
.embed-responsive object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ajuste la vidéo pour occuper tout l’espace de la div */
    max-width: 100%; /* Ne dépasse pas les limites */
    max-height: 100%;
}

  
  header h1 {
      display: block; /* Texte visible si l'image de fond est absente */
  }
  
  /* Navigation */
  header nav {
      margin-top: 10px;
  }
  
  header nav a {
      color: #ffffff;
      text-decoration: none;
      margin: 0 15px;
      font-size: 1.2rem;
  }
  
  header nav a:hover {
      text-decoration: underline;
  }
  
  /* Tableaux */
  table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-size: 1rem;
      text-align: left;
  }
  
  table th, table td {
      padding: 12px;
      border: 1px solid #ddd;
  }
  
  table th {
      background-color: #cc00cc;
      color: #ffffff;
  }
  
  table tr:nth-child(even) {
      background-color: #f9f9f9;
  }
  
  table tr:hover {
      background-color: #f2f2f2;
  }
  
  /* Formulaires */
  form {
      max-width: 600px;
      margin: 20px auto;
      padding: 20px;
     /* border: 1px solid #ddd;
      border-radius: 5px; */
     /* background-color: #f9f9f9; */
  }
  
  form label {
      display: block;
      margin-bottom: 10px;
      font-weight: bold;
      color: #333;
  }
  
  form input[type="text"], 
  form input[type="email"], 
  form input[type="password"], 
  form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #f9f9f9;
  }
  
  form input[type="text"]:focus, 
  form input[type="email"]:focus, 
  form input[type="password"]:focus, 
  form textarea:focus {
      border-color: #cc00cc;
      outline: none;
  }
  
  /* Boutons */
  button, 
  form input[type="submit"] {
      background-color: #cc00cc;
      color: #ffffff;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
  }
  
  button:hover, 
  form input[type="submit"]:hover {
      background-color: #cc00cc;
  }


  ul {
    list-style-position: inside; /* Aligne les puces avec le texte */
    padding-left: 0; /* Supprime le padding gauche par défaut */
    margin-left: 1.5em; /* Ajoute un léger décalage pour éviter que le texte soit trop proche de la bordure */
}

li {
    margin-bottom: 10px; /* Optionnel : espace entre les éléments de liste */
}

.footer-text {
    font-family: Arial, sans-serif; /* Arial ou une police sans-serif similaire */
    color: white;
    font-size: 8pt; /* Ou une taille équivalente en rem ou em pour une meilleure adaptabilité */
  
    /* Pour une meilleure adaptation sur les écrans mobiles, vous pouvez ajouter : */
    text-align: center; /* Centre le texte horizontalement */
    max-width: 80%; /* Limite la largeur maximale du texte pour éviter les débordements */
    margin: 0 auto; /* Centre le texte horizontalement dans son conteneur */
  }

  .footer-text a {
    color: white;
    text-decoration: underline; /* Souligné par défaut, vous pouvez le supprimer si vous préférez */
    }
  
  /* Responsiveness */
  @media (max-width: 768px) {
      .container {
          padding: 10px;
      }
  
      header {
          height: 150px;
          font-size: 1.5rem;
      }
  
      header nav a {
          font-size: 1rem;
          margin: 0 10px;
      }
  
      table, form {
          font-size: 0.9rem;
      }
  }
  
  @media (max-width: 480px) {
      header {
          padding: 15px;
      }
  
      table th, table td {
          font-size: 0.8rem;
          padding: 8px;
      }
  
      form {
          padding: 15px;
      }
  
      form label {
          font-size: 0.9rem;
      }
  }

  @media (max-width: 480px) {
    img {
        border-radius: 10px; /* Exemple : coins arrondis sur mobile */
        margin: 0 auto; /* Centrage si nécessaire */
    }
}

  