.comment{
    padding: 10px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 10px;
}

.comment .comment-head{
    display: flex;
    justify-content: space-between;
}

.comment .comment-head .left-side,
.comment .comment-head .right-side{
    display: flex;
}
.comment .comment-head .left-side{
    justify-content: flex-start;
}
.comment .comment-head .right-side{
    justify-content: flex-end;
}

.comment .comment-head .left-side .user-photo{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.comment .comment-head .left-side .comment-info{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    margin-left: 10px;
}
.comment .comment-head .left-side .comment-info .timestamp{
    font-size: 0.7em;
}

.comment .comment-body{
    margin-top: 10px;
}
