/*style elemen body*/
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: serif;
    margin: 0;
}

/* style elemen Header*/
header{
    margin: 8px;
    background-color: cornflowerblue;
    padding: 30px;
    color: rgb(34, 36, 37);
    text-align: center;
}
/* Style Clas Container */
.container {
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color:rgb(211, 216, 219);
}
/* stile class card*/
.card {
    /*  /margin:2px */
    margin-top: 8px;
    width: 520px;
    min-height: 400px;
    background-color: #fff;
    box-shadow: 15px 15px 60px rgba( 0, 0,0,0.15);
    padding: 12px;
}
/* style class top*/
.card .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* style class userDetails */
.card .top .userDetails {
    display: flex;
    align-items: center;
}
/* style class profile_img */
.card .top .userDetails .profile_img {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}
/* style class covr*/
.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* style elemen h3 in class userDatails*/
.card .top .userDetails h3 {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 0.98em;
}
/* style elemen span dalam elemen h3*/
.card .top .userDetails h3 span {
    font-size: 0,75em;
}
/* style class dot */
.dot {
    transform: scrale(0,6);
    cursor: pointer;
}
/* style class imgbx */
.imgbx{
    position: relative;
    width: 100%;
    height: 320px;
    margin: 10px 0 15px;
    cursor: pointer;
}
/* style class actionBbtn*/
.actionBtn {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
/* style class img dalam class actionBtn*/
.actionBtn img {
    max-width: 24px;
    cursor: pointer;
}
/* style eleman img dalam class left actionBtn */
.actionBtn .left img {
    margin-left: 8px;
}
/* style class likes*/
.likes {
    font-weight: 400;
    margin: 5px;
    font-size: 16px;
    color: #262626;
}
/* style class massages */
.massages {
    font-weight: 400;
    margin: 5px;
    color: #842a2a;
    line-height: 1.5em;
}
/* style b(bold) dalam calas massage.*/
.messages b {
    color:#262626;
}
/* style class span dalam class masage*/
.messages span {
  color:blue;
  cursor: pointer;
}
/* style class comets*/
.commets {
    margin-top: 10px;
    font-weight: 400;
    color:rgb(235, 232, 232);
}
/* style class addComments */
.addcomments {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
/* style class userImg dalam class addComments*/
.addcomments .userImg {
    position: relative;
    width: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}
/* style class text */
.text {
    width: 100%;
    border: none;
    outline: none;
    font-weight: 400%;
    font-size: 16px;
    color: #262626;
}
/* style class postTime*/
.postTime {
    margin-top: 10px;
    font-weight: 500;
    color: #777;
}
/*---------------css respons live mobile app--------------*/
@media only screen and (max-width:720px) {
    .card, header{
        width: 100%;
        margin: 8px;
    }
}
@media only screen and (max-width: 520px) {
    .card header{
        margin: 8px;
        width: 100%;
    }
}
@media only screen and (max-width:30px) {
    .card, header {
        margin: 8px;
        width: 100%;
    }
}