:root {
    --clr-primary: #651fff;
    --clr-gray: #37474f;
    --clr-gray-light: #b0bec5;
    --clr-blue-dark : rgb(7,35,41);
    --clr-white-smooky:rgb(172, 169, 169);
  }
  
  * {
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* body {
    color: var(--clr-gray);
    margin: 2rem;
  } */
  .member{
    padding: 16%;
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .member h1.heading{
    text-align: center;
    color: yellow;
    background-color: black;
  }
  .wrapper-grid h1{
      text-align: center;
      /* color: yellow; */
      color: #ffff;
  }
  .wrapper-grid {
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, 20rem);
    justify-content: center;
  }
  
.member .wrapper-grid .container {
    overflow: hidden;
    box-shadow: 0px 2px 8px 0px var(--clr-gray-light);
    background-color: var(--clr-white-smooky);
    /* background-color: rgba(0, 0, 0, 0.685); */
    text-align: center;
    border-radius: .6rem;
    position: relative;
    margin: 0.5rem;
  }
  
  .banner-img {
    position: absolute;
    background-image: url(https://cache.desktopnexus.com/thumbseg/2261/2261407-bigthumbnail.jpg);
    height: 10rem;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .profile-img {
    width: 8rem;
    clip-path: circle(60px at center);
    margin-top: 4rem;
  }
  
  .name {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .description {
    margin: 1rem 2rem;
    font-size: 0.9rem;
    /* color: #ffff; */
  }
  
  .btn {
    width: 100%;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    padding: 1rem;
    background-color: var(--clr-primary);
  }
  

  /* Social Media Icons */

div.social{
  display: flex;
  width: 100%;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  padding: 1rem;
  /* background-color: var(--clr-primary); */
  /* background-color: rgb(50, 138, 138); */
  /* background-color: rgb(17, 148, 93); */
  /* background-color: rgb(14, 182, 204);
  box-shadow: 6px 2px 6px 2px  rgb(14, 182, 204); */
  background-color: var(--clr-blue-dark);
}
div.social_icons{
  flex: 1;
}
.fa {
  padding: 10px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  /* text-align: center; */
  text-decoration: none;
  /* margin: 5px 2px; */
  border-radius: 50%;
  color: #ffff;
  border-color: 2px black;
}

.social_icons>a.fa:hover {
  justify-items: center;
  color: blue;
  background-color: yellow;
    /* opacity: 0.7; */
}

