body .instagram-post{
    font-family: Arial, sans-serif;
}
.instagram-post {
    max-width: 500px;
    margin: 20px auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.post-header {
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.username {
    font-weight: bold;
}
.post-image {
    width: 100%;
    display: block;
}
.post-caption {
    padding: 10px;
    line-height: 1.5;
}
.post-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.post-info .likes,
.post-info .comments {
    display: flex;
    align-items: center;
}
.post-info .likes i,
.post-info .comments i {
    margin-right: 5px;
}