* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fff;
}

.card {
    position: relative;
    width: 600px;
    min-height: 450px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15),
        -5px -5px 5px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

.card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card .top .user_details {
    display: flex;
    align-items: center;
}

.card .top .user_details .profile_img {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}

.cover {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.card .top .user_details h3 {
    font-size: 18px;
    color: black;
    font-weight: 900;
    line-height: 1em;
    cursor: pointer;
}

.hour {
    color: gray;
    font-size: 15px;
    font-weight: 500;
}


.globDot {
    position: absolute;
    margin-left: 5px;
    margin-top: -4px;
    font-size: 20px;
    align-items: center;
    color: #0000004b;
}

ul {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin-top: 10px;
    margin-right: 48px;
    list-style: none;
    text-align: center;
}

ul li img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin-top: -1.5px;
}

.dot {
    transform: rotate(90deg) scale(0.6);
    cursor: pointer;
    margin-top: -16px;
}

.message{
    font-weight: 400;
    margin-top: 5px;
    color: #777;
    line-height: 1.5em;
}
.imgBg{
    position: relative;
    width: 600px;
    height: 420px;
    margin: 10px 0 15px;
    margin-left: -20px;
    overflow: hidden;
}
.coverFull{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}
.btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btns img{
    max-width: 30px;
    cursor: pointer;
}
.btns .left img{
    margin-right: 8px;
}
.likes{
    margin-top: -28px;
    margin-left: 33px;
    font-size: 17px;
    color: #777;
    text-align: center;
    font-weight: 500;
}
.right h4{
    margin-top: 5px;
    margin-left: 33px;
    font-size: 17px;
    color: #777;
    text-align: center;
    font-weight: 500;
}
.border{
    position: relative;
    width: 100%;
    height: 0.5px;
    background: #0000004b;
    margin-top: 15px;
}
.icon{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0 5px 0;
}
.icon img{
    max-width: 30px;
    cursor: pointer;
}
.like{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.like img{
    position: relative;
    max-width: 70px;
    cursor: pointer;
    margin: 0 40px;
    margin-top: -15px;
}
.like img:nth-child(1){
    width: 55px;
    margin-right: 20px;
}
.like img:nth-child(2){
    width: 33px;
    margin-right: 15px;
}
.border_bott{
    position: relative;
    width: 100%;
    height: 0.5px;
    background: #0000004b;
    margin-top: -15px;
}
.addComments{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.addComments .userimg{
    position: relative;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}
.text{
    background: #F0F2F5;
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    color: #262626;
    border-radius: 20px;
}

input[type="text"]{
    position: relative;
    padding: 0 25px;
}

@media (max-width: 640px){
    .card{
        width: 350px;
    }
    .imgBg{
        width: 350px;
    }
}