.post {
    width: 97%;
    padding: 10px;
}

.profile-pic{
    width: 20px;
    height: 20px;
    transition: all 0.25s;
    object-fit: cover;
    object-position: center center;
    margin-right: 5px;
}

.post-title {
    font-size: larger;
    align-items: center;
    display: flex;
    transition: all 0.25s;
}

.post-title:hover {
    font-size: x-large;
}

.poster-username {
    color: darkgrey;
    cursor: pointer;
}

.post-thread{
    color: darkgrey;
    cursor: pointer;
}

.post-id {
    color: darkgrey;
}

.post-date{
    color: darkgrey;
}

.thread-head{
    padding: 10px;
    text-align: center;
    width: 90%;
}

.thread-name-head {
    font-size: x-large;
}

.thread-identifier-head {
    font-size: large;
    color: darkgray;
}

.post-title .profile-pic{
    width: 20px;
    height: 20px;
    margin-left: 5px;
    transition: all 0.25s;
    object-fit: cover;
    object-position: center center;
}

.post-title:hover .profile-pic{
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center center;
}

.thread-thumb {
    width: 500px;
    height: 100px;
    object-fit: cover;
    object-position: center center;
}

.post-image-container {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: auto;
}

.post-image {
    width: auto;
    max-height: 150px;
    overflow-x: hidden;
    margin: 5px;
}

.post-video {
    width: auto;
    max-height: 300px;
    overflow-x: hidden;
    margin: 5px;
}

.comment-container {
    max-height: 300px;
    overflow: auto;
}

.comment {
    display: flex;
    flex-direction: column;
}

.comment .profile-pic {
    width: 20px;
    height: 20px;
}
.event-title {
    font-size: 20px
}