body {
    margin: 0;
    padding: 0;
    background: url(../img/lancre_violet.jpg) no-repeat center center fixed; 
    background-size: cover; /* L'image couvre toute la largeur et hauteur */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition de l'image */
    background-attachment: fixed; /* Optionnel : fixe l'image lors du défilement */
    min-height: 100vh; /* Assure que le fond couvre toute la hauteur de la fenêtre */
    color: white; /* Couleur du texte pour un meilleur contraste */
    font-family: Arial, sans-serif;

    /* text-align: right; */ /* Alignement du texte à droite */
    text-align: center;
    padding: 20px 50px; /* Espacement : 20px en haut/bas, 50px à gauche/droite */
    box-sizing: border-box; /* Inclut le padding dans la largeur totale */

}



p.fond1 {
    /* background-color: rgba(128, 128, 128, 0.55); */
    background-color: rgba(0, 0, 0, 0.35);
    padding: 1em;
    border-radius: 4px;
    
    display: inline-block;
    min-width: 50%;
    /* border: 1px solid red; */
}

p.fond1 a {
  color: black;
  background-color: lightgray;
  padding: 0.1em 0.3em;
  border-radius: 3px;
  text-decoration: none;
}

p.fond1 a:hover {
  color: white;
  background-color: black;
}