body{
    background-color: hsl(210, 46%, 95%);
}
.container{
    width: 700px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    /* margin: auto; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.img{
    flex-basis: 51%;
    margin-right: 20px;
}
.img img{
    max-width: 100%;
    object-fit: cover;
    height: 100%;
    
}
.content{
    flex-basis: 75%;
    position: relative;
    padding: 0 20px;

}
.me>p{
    font-size: 13px;
    color: hsl(212, 23%, 69%);
line-height: 1.8;

}
.content h2{
color:  hsl(217, 19%, 35%);
line-height: 1.5;
}
.person{
    height: 80px;
    position: relative;
    display: flex;
    justify-content: space-between;}
.person .name {
display: flex;
justify-content: start;
align-items: center;
flex-basis: 70%;
}
.person .name>img{
    height: 80%;
    max-width: 100%;
    border-radius: 50%;

}
.person .name .d{
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-left: 20px;
    justify-content: space-evenly;
}
.person .name .d span{
    display: block;
    font-size: 15px;
    color: hsl(214, 17%, 51%);

}
.person .d p{
    margin: 0;
    font-size: 15px;
}
 div.s{
    border-radius: 50%;
    flex-basis: 20%;
    display: flex;
    justify-content: center;
    align-items: center;

}
div.s img{
    background-color: hsl(212, 23%, 69%);
    border-radius: 50%;
    height: 15px;
    color: white;
    padding: 10px;
    cursor: pointer;
}
.me .share .links{
    position: absolute;
    /* top: 0; */
    background-color: hsl(217, 19%, 35%);
    margin: 0;
    bottom: 0;
    right: -18%;
    align-items: center;
    transition: 1.5s ;
    display: none;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
}
.share .active{
    transition: 1.5s !important ;
    display: flex  !important;
    align-items: center;
}
.me{
    position: relative ;
}
.links img:nth-child(4){
    display: none;
}
.me .share .links img{
    margin: 0 10px;
    cursor: pointer;
    
}
@media (max-width:760px){
    .container{
        flex-direction: column;
        width: 350px;
    }
    .img{
        margin: 0;
    }
    .links{
      position: absolute;
      bottom: 0;
      width: 90%;
      justify-content: space-between;
      height: 50px;
      z-index: 3;
      left: 0 !important;
    }
    .links img:nth-child(4){
        background-color: hsl(212, 23%, 69%);
        border-radius: 50%;
        height: 15px;
        display: block;
        color: white;
        padding: 10px;
        cursor: pointer;
    }
    .me{
        position: static;
    }
}
