body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: #6a1b9a;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

h1 {
    margin-left: 20px;
}

.logo {
    max-width: 100px;
    height: auto;
    margin-right: 20px;
}

.section-title {
    font-family: Prompt;
    font-size: medium;
    font-weight: 700;
    font-size: 36px;
    color: #6a1b9a;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    top: 20px;
    bottom: 10px;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-wrap: wrap;
    /* Permet de passer à la ligne si l'écran est trop petit */
    justify-content: center;
    /* Centre les boîtes horizontalement */
    gap: 20px;
}


.member-box {
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    width: 8%;
    background-color: #A54BD9;
    border-radius: 10px;
    padding: 4%;
    position: relative;
    top: 50px;
    margin-bottom: 20px;
    min-height: 10px; /* TO FIX */
}

.member-box img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 70%;
    max-width: 100%;
    height: auto;
    transform: translate(-50%, -60%);
    border-radius: 10px;
}

.member-info {
    display: flex;
    flex-direction: column;
    height: auto; 
}

.member-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    font-family: Prompt;
    font-style: normal;
    font-weight: 600;
    min-height: 60px;

    margin-top: -20%;
}

.member-description {
    color: #ddd;
    font-family: Prompt;
    font-style: normal;
    font-weight: 400;
    min-height: 120px; 
    display: flex;
    position:relative;
    top:30px;
    /* align-items: center; */
    /* justify-content: center; */
}

.member-funfact {
    color: #ddd;
    font-family: Prompt;
    font-style: normal;
    font-weight: 400;
    min-height: 50px; 
    display: flex;
    position:relative;
    top: 10px;
} 