@import url('https://fonts.googleapis.com/css2?family=Bellota+Text:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

* .container2 {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
}

.container2 .card2 {
   width: 330px;
   height: 416px;
   padding: 20px 30px;
   margin: 20px;
   background: #f2f3f7;
   box-shadow: 0.6em 0.6em 1.2em #d2dce9,
      -0.5em -0.5em 1em #ffffff;
   border-radius: 20px;
}

.container2 .card2 .content2 {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.container2 .card2 .content2 .imgBx {
   width: 180px;
   height: 180px;
   border-radius: 50%;
   position: relative;
   margin-bottom: 20px;
   overflow: hidden;
}

.container2 .card2 .content2 .imgBx img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.container2 .card2 .content2 .content2Bx h4 {
   color: #36187d;
   font-size: 1.5rem;
   font-weight: bold;
   text-align: center;
   letter-spacing: 1px;
}

.container2 .card2 .content2 .content2Bx h5 {
   color: #6c758f;
   font-size: 1rem;
   font-weight: bold;
   text-align: center;
}

.container2 .card2 .content2 .sci {
   margin-top: 20px;
}

.container2 .card2 .content2 .sci a {
   text-decoration: none;
   color: #6c758f;
   font-size: 30px;
   margin: 10px;
   transition: color 0.4s;
}

.container2 .card2 .content2 .sci a:hover {
   color: #0196e3;
}

/*   colors
        #f2f3f7
        #d2dce9
        #36187d
        #6c758f
        #0196e3
 */