.logo{
    width: 120px;
    height: 60px;
}
header{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgb(203, 197, 197);
    margin: auto;
}
.container{
    height: 1700px;
}
.first-user{
    width: 50px;
    height: 50px;
    margin-right: 10px;
    margin-top: 5px;
}
body{
    background-color: rgb(222, 225, 224);
}
.content{
    width: 40%;
    margin: auto;
    background-color: white;
    height: auto;
}
.user-info{
    display: flex;

}
.user-info img{
    width: 50px;
    height: 50px;
    margin-right: 10px;
    margin-top: 10px;
    padding-left: 10px;

}
.post{
    width: 100%;
    height: 400px;
}
.user-name{
    font-weight: bold;
    margin-top: 20px;
    font-size: 13px;
}
.location{
    font-size: 10px;
    margin-top: -10px;
}
.icons{
    display: flex;
}
.icons img{
    width: 20px;
    height: 20px;
    cursor: pointer;
    padding: 5px;
}
.icons img:hover{
    width: 18px;
    height: 18px;
    cursor: pointer;
    padding: 5px;
}
span{
    font-weight: bold;
    margin-right: 5px;
}
.like-cmnt{
    margin-top: -10px;
    margin-left: 10px;
    font-size: 13px;
    padding-bottom: 10px;
}
.desc{
    margin-top: -10px;
}
@media screen and (max-width: 400px) {
    .content{
        width: 100%;
        margin: auto;
        background-color: white;
        height: auto;
    }
}
