/*style elemen body */
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: greenyellow;
}

/*style header*/
header{
    background-color: rgb(19, 196, 255);
    padding: 30px;
    color: rgb(22, 22, 21);
    text-align: center;
}
/* style class container */
.container  {
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color:rgb(255, 255, 255);
}
/* style class card*/
.card {
    margin-top: 8px;
    width: 520px;
    min-height: 400px;
    background: #fff;
    box-shadow: 15px 15px 60px rgba(0, 0,0, .5);
    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: 50px;
overflow: hidden;
margin-right: 8px;
}
/*style class cover*/
.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*style elemen h3 in class userDetails*/
.card .top .userDetails h3  {
    font-size: 18px;
    color: rgb(211, 30, 30);
    font-weight: 500;
    line-height: 0.90em;
    }
    /* style elemen span dalam elemen h3*/
    .card .top .userDetails h3 span {
        font-size: 0.75em;
    }
    /*style class dot*/
.dot {
    transform: scale(0.6);
    cursor: pointer;
}
/*style class imgbx*/
.imgbx {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 10px 0 15px;
    cursor: pointer;
}
/* style class acitionBtn*/
.actionBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* style class img dalam class actionBtn*/
.actionBtn img {
    max-width: 24px;
    cursor: pointer;
}
/* style elemen img dalam class left actionBtn*/
.actionBtn .left img {
    margin-right: 8px;
}
/* style class likes*/
.likes {
    font-weight: 500;
    margin: 5px;
    font-size: 16px;
    color: rgb(255, 0, 0);
}
/* style class message*/
.messages {
    font-weight: 400;
    margin: 5px;
    color: honeydew;
    line-height: 1. 5em;
}
/* style elemen b dalam class mesagge*/
.messages b {
    color: beige;
}
/* style elemen span dalam class message*/
.messages span {
    color: rgb(18, 18,237);
    cursor: pointer;
}
/* style class commenst*/
.commenst {
    margin-top: 10px;
    font-weight: 400;
    color: #999;
}
/* style class addCommenst*/
.addCommenst {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
/* style class userImg dalam calass addcommenst*/
.addCommenst .userImg {
    position: relative;
    width: 36px;
    height: 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: 10px;
    font-weight: 500;
    color: #777;
}
/*-----------------------CSS Responsive 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: 360) {
.card, header {
    margin: 8px;
    width: 100%;
}
}
    







