body {
    background-color: #403060;
    background-image: radial-gradient( circle, rgba(  0, 0, 0, 0 ) 0%, rgba( 0, 0, 0, 0.8 ) 100% );
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Open Sans';
 }h1 {
    font-size: 3rem;
    font-family: 'Poppins';
    font-weight: bold;
    color: rgb(250, 138, 87);
    text-align: center;
    margin-top:6%;
    margin-bottom: 2%;
  }

  h2{
    text-align: center;
    font-family: 'Poppins';
    font-size: 2.5rem;
    padding: 20px;
    color: white;
  }

.container1 {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
}

.container2 {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    justify-items: center;
}

.com-member {
    border: 2px solid black;
    width: 250px;
    padding: 20px 0 30px;
    margin-bottom: 30px;
    background-color: #f7f1d6;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.com-member .picture {
    display: inline-block;
    height: 180px;
    width: 180px;
    z-index: 0;
    position: relative;
}

.com-member .picture::before {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background-color:  rgba(0,0,0, 0.600);
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 0.9;
    transform: scale(3);
    transition: all 0.3s linear 0s;
}

.com-member:hover .picture::before {
    height: 100%;
}

.com-member .picture::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color:  rgba(0,0,0, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.com-member .picture img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
}

.com-member:hover .picture img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
}

.com-member .name {
    color: darkblue;
    font-weight: 500;
}

.com-member .title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: black;
    text-transform: capitalize;
}

.com-member .social {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color:  rgba(0,0,0, 0.65);
    position: absolute;
    bottom: -100px;
    left: 0;
    transition: all 0.5s ease 0s;
}

.com-member:hover .social {
    bottom: 0;
}

.com-member .social li {
    display: inline-block;
}

.com-member .social li a {
    display: block;
    padding: 10px;
    font-size: 17px;
    color: white;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

.com-member .social li a:hover {
    color: #1369ce;
    background-color: #f7f5ec;
}

@media screen and (max-width: 650px) {
    h1{
        font-size: 26px;
        margin-top: 90px;
    }
    h2{
        font-size: 26px;
    }
}