.overview_container {
    margin: 16px;
    align-self: center;
    padding: 20px;
    max-width: 1200px;
    width: calc(100% - 70px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: white url('../images/back_image.png') repeat;
    border-top: 3px solid var(--yellowColor);
}

.overview_container h1 {
    color: var(--colorAccent);
    font-family: "Roboto", sans-serif;
    text-align: center;
    align-self: center;
    font-weight: 400;
    border-bottom: 2px solid var(--colorAccent);
}

.overview_container .sub_content {
    color: var(--colorAccent);
    font-weight: 400;
    line-height: 1.3;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    text-align: center;
}

.overview_container .main_content {
    color: var(--textColor);
    font-weight: 300;
    line-height: 1.3;
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    text-align: center;
}

.member_container {
    width: 150px;
    margin: 12px;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.member_container:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.member_container.main_member {
    min-width: 200px;
    margin: 16px;
}

.main_member .member_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    z-index: 10;
}

.member_image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    z-index: 10;
}

.main_member .about_member {
    background-color: #fafafa;
    padding: 16px 16px;
}

.about_member {
    background-color: #fafafa;
    padding: 12px 12px;
    transition: 0.4s ease;

}

.main_member .member_name {
    font-family: "Roboto", sans-serif;
    color: var(--colorAccent);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.member_name {
    font-family: "Roboto", sans-serif;
    color: var(--colorAccent);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: 0.4s ease;

}

.main_member .designation {
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    color: var(--colorAccent);
    font-size: 16px;
    margin-top: 12px;
    text-align: center;
}

.designation {
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    color: var(--colorAccent);
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
    transition: 0.4s ease;
}

.about_member:hover {
    background-color: var(--colorAccent);
}

.about_member:hover .member_name {
    color: white;
}

.about_member:hover .designation {
    color: white;
}
