<style>
    /* Réinitialisation */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      background: url("../Img/Bibli.png");
      background-size: cover;
      color: #8f710ea5;
      line-height: 1.6;
      padding: 20px;
    }
    
    header {
      background-color: rgba(0, 0, 0, 0.493);
      color: #ebf705;
      font-size: 24px;
      padding: 5px;
      text-align: center;
      margin-bottom: 5px;
      padding-bottom: -10;
      border: 1px solid gold;
      border-radius: 5px;
      
    }
    
    main {
      max-width: 800px;
      margin: 0 auto;
      background-color: rgba(10, 0, 0, 0.594);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border: 1px solid gold;
      margin-top: 30px;
     
    }
    
    .place-intro {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 30px;
    }
    
    .place-description h2 {
      margin-bottom: 10px;
      color: rgb(0, 89, 255);
    }
    
    .place-description p {
      font-size: 1.2rem;
      line-height: 1.5;
      color: white;
    }
    
    footer {
      text-align: center;
      margin-top: 30px;
      font-size: 0.9rem;
      color: #0b0000;
    }

    a:visited {
      color: rgb(226, 8, 226); /* Change la couleur après le clic */
    }

    .gold-title {
      font-weight: bold;
      text-transform: uppercase;
      color: transparent;
      background: linear-gradient(45deg, #FFD700, #FFA500, #FFEC8B, #FFD700);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shine 3s infinite linear;
      text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.242); /* ✅ Ombre pour contraste */
      text-shadow: 
      /* 3px  3px 8px rgb(2, 19, 247); /* Ombre subtile */
    }
    
    @keyframes shine {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    .l1 {
      color: rgb(0, 102, 255);
      text-decoration: none;
    }

    a {
      color: gold;
      text-decoration: none;
    }
    
  </style>