
.member-card {
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transition: transform 0.5s;
    background-color: #f9f9f9;
    box-shadow: 0px 0px 10px 0px rgba(34, 60, 80, 0.3);
    margin-bottom: 40px !important;
    border-radius: 20px;
}

.member-card:hover {
    transform: scale(1.1);
}

.member-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 20px;
    z-index: 10;
    border: 8px solid #eee;
}

.member-card h1 {
    font-family: "Ubuntu", sans-serif;
    font-size: 22px;
    color: #555;
    margin: 10px;
    text-align: center;
}

.member-job {
    font-family: "Monserrat", sans-serif;
    color: #777;
    font-weight: 300;
    text-align: center;
}
.about-member {
    font-size: 14px;
    width: 90%;
    margin: 15px 0;
    color: #444;
    text-align: center;
}

.about-img {
    padding-right: 40px;
    padding-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .member-card:hover {
        transform: scale(1.0);
    }
}