#equipe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 80%;
    margin: 0 auto;
}

.membre {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 2px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membre:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.membre img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
}

.membre h2 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #333;
}
.membre h3 {
    font-size: 1.2em;
    margin: 10px 0;
    color: #666;
}
.membre p {
    font-size: 1em;
    color: #555;
    max-height: 100px;
    overflow-y: auto;
    margin: 10px 0;
    padding: 0 10px;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin: 30px 0;
    text-decoration: underline;
    font-family: 'Brush Script MT', cursive;
}

@media (max-width: 768px) {
    #equipe {
        grid-template-columns: 1fr;
    }
}