body {
    margin: 0;
    padding: 0 2%;
    overflow: auto;
}

h2 {
    background-color: #000;
    width: fit-content;
    padding: 5px 15px;
    color: #e7c964;
    border-radius: 5px;
}

.liste-membres {
    display: flex;
    background-color: #fff;
    border-radius: 25px;
    padding: 8px 15px 8px 10px;
    flex-direction: column;

    @media screen and (min-width: 850px) {
        flex-direction: row;
        justify-content: space-evenly;
        height: 60vh;
    }
}

.humains {
    display: flex;
    width: -webkit-fill-available;
    justify-content: space-evenly;
    background-color: #fff;
    border-radius: 25px;
    max-height: 60vh;
    max-width: 100%;
}

.membre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 48%;
    margin: 3% 0;

    p {
        text-align: center;
        margin: 0;
        padding: 0;
        font-size: 1.2em;
    }
}

.membre img {
    max-height: 85%;
    max-width: -webkit-fill-available;
    border-radius: 20px;
}

.voiture img {
    max-height: 100%;
    max-width: --webkit-fill-available;
    border-radius: 20px;

    @media screen and (max-width: 850px) {
        max-width: 100%;
    }
}

.partenaires {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.partenaire {
    flex: 1 1 250px;
    max-width: 45%;
    border: 1px solid #000;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 5px #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partenaire h3 {
    margin: 0.5em;
}

.partenaire p {
    text-align: justify;
}

.partenaire img {
    width: 100%;
    height: auto;
    max-height: 150px;
    border-radius: 5px;
    object-fit: contain;
}

.avant {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1em;
}

.card {
    text-decoration: none;
    color: #000;
}

.presentation {
    background-color: #fff;
    border-radius: 25px;
    padding: 1em;
    margin: 1em auto;
}

.lien-bouton {
    display: inline-block;
    text-decoration: none;
    color: #000;
    background-color: #e7c964;
    padding: 0.8em 1.5em;
    margin: 1em auto;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lien-bouton:hover {
    background-color: #000;
    color: #e7c964;
}

.aligned {
    text-align: center;
}

.anciens-equipages {
    display: none;
}