/* --------------- Style du tableau --------------*/

#All_links {
    display: flex;
    flex-direction: column;
    text-align: justify;
}

#All_links img {
    height: 10em;
    width: 15em;
    border-right-style: solid;
    border-right-color: #058205;
    border-right-width: 2px;
}

.liens_desc {
    display: flex;
    flex-direction: row;
    border: solid 2px #058205;
    margin-top: 5px;
}

.liens_desc:first-of-type {
    margin-top: 2em;
}

.liens_desc:last-of-type {
    margin-bottom: 2em;
}

.liens_desc p {
    margin: 0;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.liens_desc p:nth-child(2) {
    text-align: center;
    width: 25%;
    border-right: solid 2px #058205;
}

/*---------------- Tableau Responsive ------------------ */

@media screen and (max-width: 1024px) {
    .liens_desc {
        flex-direction: column;
    }

    .liens_desc img {
        border: 2px solid #058205;
        margin: 4px 0 0 0;
    }

    .liens_desc p {
        margin: auto;
        padding: auto;
    }

    .liens_desc p:nth-child(2) {
        margin: auto;
        width: auto;
        border: solid 0 0 2px 0 #058205;
        border-right: none;
        padding: 10px;
    }

    .liens_desc p:last-of-type {
        padding-bottom: 5px;
    }
}
