
/*style elemen body*/
body {
    margin: 0;
    padding: o;
    box-sizing: border-box;
    font-family: 'Trebuchet MS';
}
/*style elemen heder */
header{
    margin: 8px;
    border-color:royalblue;
    padding: 20px;
    color: rgba(46, 174, 206, 0.616);
    text-align: center;
}
/*style container*/
.container {
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: cornsilk;
}
/* style class card*/
.card {
    /* /margin:2px; */
    margin-top: 8px;
    width: 520px;
    min-height: 400px;
    background: darkgrey;
    box-shadow: 15px 15px 60px rgb(0, 0, 0.15);
}

/*style class top*/
.card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*style class userDetailis*/
.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;
}
/*style class cover*/
.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* style elemen h3 in class userDetailis*/
.card .top .userDetails h3 {
    font-size: 18px;
    color: beige;
    font-weight: 500;
    line-height: 0.90em;
}
/* style elemen span dalam elemen h3*/
.card .top .userDetailis h3 span {
    font-size: 0 75sm;
}
/*styl 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 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: blue;
}
/*style class messages*/
.messages {
    font-weight: 400;
    margin: 5px;
    color: cornsilk;
    line-height: 1.5em;
}
/*style elemen b dalam class messages*/
.messages b {
    color: #000;
}
/*style class comment*/
.comment {
    margin-top: 18px;
    font-weight: 400;
    color: gainsboro;
}
/*style class addCommenst*/
.addComment {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
/*style class userImg dalam class addCommenst*/
.addComment .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: 16px;
    color: cyan;
}
/*style class posTime*/
.posTime {
    margin-top: 10px;
    font-weight: 500;
    color: darkgreen;
}
@media only screen and (max-width:720) {
    .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) {
    .card, header {
        margin: 8px;
        width: 100%;
    }
}


    




