@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #ecf0f3;
}

.wrapper,
.wrapper .img-area,
.social-icons a, 
.buttons button {
    background-color: #ecf0f3;
    border-radius: 10px;
    box-shadow: -3px -3px 7px #fff,
                 3px 3px 5px #ceced1
}

.wrapper {
    position: relative;
    padding: 30px;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ecf0f3;
    border-radius: 10px;
    box-shadow: -3px -3px 7px #fff,
                 3px 3px 5px #ceced1;
}

.wrapper .img-area {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-area .inner-area {
    height: calc(100% - 25px);
    width: calc(100% - 25px);
    border-radius: 50%;
}

.inner-area img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.wrapper .name {
    font-size: 23px;
    font-weight: 500;
    margin: 10px 0 5px 0;

}

.wrapper .about {
    font-weight: 400;
    color: #44476a;
    font-size: 16px;
}

.wrapper .social-icons {
    margin: 15px 0 25px 0;
}

.social-icons a {
    height: 40px;
    width: 40px;
    display: inline-flex;
    text-decoration: none;
    margin: 0 5px;
    border-radius: 50%;
    position: relative;
}

.social-icons a:hover::before,
.buttons button:hover::before,
.wrapper .icon:hover::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ecf0f3;
    border-radius: 50%;
    box-shadow: inset -3px -3px 7px #fff,
                inset  3px 3px 5px #ceced1
}

.buttons button:hover::before {
    border-radius: 5px;
    z-index: -1;
}

.social-icons a i{
    text-align: center;
    width: 100%;
    height: 100%;
    line-height: 40px;
    position: relative;
    z-index: 5;
}

.social-icons a.fb i{
    color: #426782; 
}

.social-icons a.twitter i{
    color: #1da1f2; 
}

.social-icons a.insta i{
    color: #e1306c; 
}

.social-icons a.yt i{
    color: red; 
}

.wrapper .buttons {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.buttons button {
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 17px;
    font-weight: 400;
    border-radius: 5px;
    cursor: pointer;
    color: #31344b;
    z-index: 4;
}

.buttons button:first-child{
    margin-right: 10px;
}

.buttons button:last-child{
    margin-left: 10px;
}

.social-icons a i {
    text-align: center;
    width: 100%;
    height: 100%;
    line-height: 40px;

}

.wrapper .social-share {
    display: flex;
    width: 100%;
    margin-top: 30px;
    padding: 0 5px;
    justify-content: space-between;
}

.social-share .row {
    color: #31344b;
    font-size: 17px;
    cursor: pointer;
    position: relative;
}

.social-share .row::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background: #e0e6eb;
    margin-left: -25px;
}

.row:first-child::before {
    background: none;
}

.social-share .row i.icon-2 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.row:nth-child(1):hover i.icon-2,
.row:nth-child(2):hover i.icon-2 {
    opacity: 1;
    pointer-events: auto;
}

.wrapper .icon {
    height: 35px;
    width: 35px;
    line-height: 35px;
    color: #31344b;
    opacity: 0.7;
    cursor: pointer;
    position: absolute;
    top: 25px;
    text-align: center;
}

.wrapper .icon.arrow {
    left: 25px;
}

.wrapper .icon.dots {
    right: 25px;
}

.wrapper .icon i {
    position: relative;
    z-index: 5;
}