.body{
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.post {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 10px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 50%;
}


.username {
    font-weight: bold;
}

.post-content {
    margin: 10px 0;
}

.post-content img {
    width: calc(100% - 10px);
}

.comments {
    margin-top: 10px;
    padding-left: 20px;
}

.comment {
    margin-bottom: 10px;
}

.comment .username {
    color: #555;
}