body {
    font-family: Arial, sans-serif;
    background-color: #ebf9fd;
}

.background-img {
    position: absolute;
    opacity: 0.5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 99.9vw;
    height: 86vh;
}

.background-div {
    position: relative;
    padding-left: 10%;
}

  
.team-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin:3%;

}
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    background-color: #ccc;
}
.name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}
.role {
    font-size: 14px;
    color: #555;
}
.placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(to top, #98CFFF, #EAF4FC);
    display: flex;
    align-items: center;
    justify-content: center;
}
footer {
    position: fixed;
    display: flex;
    justify-content:space-between;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    height: 50px; /* Taille réduite par défaut */
}

footer:hover {
    display: block;
    height: 150px;
}