.allCardsContainer {
    margin-top:2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
}

.cardBody {
    width: 25vw;
    height:65vh;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0px 0px 3px #000000a2;
    transition: ease-in-out 1s;
    margin-bottom: 2rem;
    cursor: default;
}

.cardSection1 {
    width: 100%;
    overflow: hidden;
    height: 80%;
}

.cardSection1 img {
    width: 110%;
    transition: ease-in-out 1s;
}

.cardText {
    margin: 0;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-size: 80%;
}

.cardSection2 {
    background-color: #f8e2e2b2;
    border-top: 1px solid #0000001c;
    padding: 0.5rem;
    height:40%;
    transition: ease-in-out 1s;
}

.cardSection2 .name {
    color: var(--main-color);
    font-size: 1.3rem;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    padding: 0;
}

.cardSection2 .memTitle {
    color: #0000002a;
    transition: ease-in-out 1s;
    font-size:116%;
}

.cardSection2 .post {
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-size: 100%;
}
.cardBody *{
    font-size: 80%;;
}
/* Animation */
.cardBody:hover {
    box-shadow: 0px 0px 15px #000000a2;
}

.cardBody:hover .cardSection1 img {
    width: 115%;
}

.cardBody:hover .cardSection2 .memTitle {
    color: #000000a2;
}

.cardBody:hover .cardSection2{
    background-color: #f8cfcf;
}




/* Media Query */
@media (max-width:600px) {
    .cardBody {
        width: 80vw;
        height: 60vh;
    }

    .cardText {
        margin: 0;
        /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
        font-size: 90%;
    }
    .cardSection2 .name{
        font-size:100%;
    }
    .cardSection2 .memTitle{
        font-size:80%;
    }
}