/*style elemen body*/
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/*style elemen header*/
header {
    margin: 8px;
    background-color: darkcyan;
    padding: 20px;
    color: white;
}
/*style class container*/
.container {
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f4f6EB;
}
/*style class card*/
.card {
    margin-top: 8px;
    width: 520px;
    min-height: 400px;
    background-color: #fff;
    box-shadow: 15px 15px 60px rgba(0,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 profil-img*/
.card .top .userdetails .profile_img {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}
/*syle 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: #000;
font-weight: 500;
line-height: 0.9em;
}
/*style elemen span dalam h3*/
.card .top .userdetails .h3 span {
    font-size: 0.75em;
}
/*style classs dot*/
.dot {
    transform: scale(0.60);
    cursor: pointer;
}
/*style class imgbx*/
.imgbx {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 10px 0 15px;
    cursor: pointer;
}
/*style class actionbtn*/
.actionbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*style elemen 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(8, 8, 8);
}
/*style class message*/
.message {
    font-weight: 400;
    margin: 5px;
    color: #fff;
    line-height: 1.5em;
}
/*style class b(bold) dalam class message*/
.message b {
    color: #000;
}
/*style class span dalam class message*/
.message span {
    color: rgba(72,72,246);
    cursor: pointer;
}
/*style class comments*/
.comments {
    margin-top: 10px;
    font-weight: 400px;
    color: #999;
}
/*style class addcomments*/
.addcomments {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
/*style class userimg dalam class addcomments*/
.addcomments .userimg {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}
/*style clas text*/
.text {
    width: 100%;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    color: #262626;
}
/*style class posTime*/
.posTime {
    margin-top: 10px;
    font-weight: 500;
    color: #777;
}

/*--------------------css Responsive mobile App---------------------*/
@media only screen and (max-width:720px) {
    .header, .container, .card {
        width: 100%;
        margin: 8px;
    }
}
@media only screen and (max-width:520px) {
    .header, .container, .card {
        width: 100%;
        margin: 8px;
    }
}
@media only screen and (max-width:360px) {
    .header, .container, .card {
        width: 100%;
        margin: 8px;
    }
}