.linkedin-feed {
    text-align: center;
    margin: 20px 0;
}

.linkedin-feed a {
    display: inline-flex; /* Utilise flexbox pour aligner le logo et le texte */
    align-items: center; /* Alignement vertical */
    padding: 10px 20px;
    background-color: #0077b5; /* Couleur LinkedIn */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.linkedin-feed a:hover {
    background-color: #005c99;
}

.linkedin-feed svg {
    margin-right: 10px; /* Espacement entre le logo et le texte */
    width: 24px;
    height: 24px;
    fill: white; /* Couleur du logo */
}