.pdf {
    display: flex;             
    justify-content: center;              
}   

.pdf a {
    display: inline-block;  /* Transforme les liens en éléments block */
    text-align: center;  /* Centre le texte des liens */
    margin-left: auto;  /* Ajoute un centrage horizontal */
    margin-right: auto; /* Ajoute un centrage horizontal */
    color: inherit;  /* Garde la couleur du texte normale */
    text-decoration: none; /* Enlève le soulignement */
    margin:20px 0 60px 0;
    border-radius: 50px;
    background-color: #F5BC8F;
    padding: 10px 20px; /* Ajoute un peu d'espace autour du texte */
    width: fit-content; /* Assure que la largeur suit le texte */
}

