/* Police simple pour une meilleure lisibilité */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000; /* noir */
    color: #fff; /* blanc */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
  }
  
  .container {
    padding: 20px;
  }
  
  h1 {
    font-size: 3rem;
    color: #CDB07D; /* couleur dorée */
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
  }

  a {
    color: #CDB07D;
  }
  
  /* Responsive : réduire la taille du texte sur petits écrans */
  @media (max-width: 600px) {
    h1 {
      font-size: 2rem;
    }
  
    p {
      font-size: 1rem;
    }
  }