<style>
    /* Réinitialisation */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      background: url("/Img/ImgHéros/Astral.png");
      background-size: cover;
      color: #333;
      line-height: 1.6;
      padding: 20px;
    }
    
    header {
      background-color: transparent;
      color: #f9e402;
      font-size: 24px;
      padding: 10px;
      text-align: center;
      margin-bottom: 10px;
      
    }
    
    main {
      max-width: 800px;
      margin: 0 auto;
      background-color: rgba(10, 0, 0, 0.5);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border: 2px solid black;
    }
    
    .place-intro {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 30px;
    }
    
    .place-description h2 {
      margin-bottom: 10px;
      color: #1a75d0;
    }
    
    .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;
    }
    
  </style>