#background {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('/static/posts/img/bg2.webp') no-repeat center center fixed;
    background-size: cover;
}

@media all and (max-width: 1199px) {
    #background {
        background: url('/static/posts/img/bg.webp') no-repeat center center fixed;
        background-size: cover;
    }
}



h1 {
    font-weight: bold;
}

#all-posts-span a {
    cursor: pointer;
    color: black;
}

#all-posts-span a:hover {
    color: #212529;
    text-decoration: none;
}



.post-container {
    border: 1px solid rgb(235, 235, 235);
    padding: 8%;
    flex-direction: column;
}

.post-footer {
    margin-top: auto;
    padding: 15px 0;
    flex-direction: column;
}

.post-footer .socials svg {
    margin: 0 10px;
}

.post-footer .socials svg:hover {
    cursor: pointer;
    fill: #4464a3;
}

.post-footer .socials {
    border-top: 1px solid rgb(235, 235, 235);
    border-bottom: 1px solid rgb(235, 235, 235);
    padding: 15px 0;
}

.post-footer .post-stats {
    padding: 15px 0 15px 10px;
}

.socials span {
    margin-left: auto;
    margin-right: 10px;
}

.post-stats .stats-likes {
    margin-left: auto;
    margin-right: 10px;
}

.stats-likes svg {
    fill: transparent;
    stroke: #e84a43;
    stroke-width: 1.5px;
}



.recent-posts-container {
    margin-top: 5px;
    justify-content: center;
}

.card {
    margin: 10px 10px;
}

.card-img-top {
    max-width: 288px;
    aspect-ratio: 1.4/1;
}

.recent-stats {
    display: flex;
}

.recent-stats .stats-likes {
    margin-left: auto;
}

.card-body h5 {
    margin-bottom: 68px;
    cursor: pointer;
}

.card-body h5 a:hover {
    color: #E1BA8B;
}

.card .card-img-top {
    cursor: pointer;
}

.card a {
    color: black;
}

.card a:hover {
    text-decoration: none;
}

.recent-posts-header {
    margin-top: 25px;
}

.recent-posts-header span {
    margin-left: auto;
    cursor: pointer;
}

.recent-posts-header span a {
    color: black;
}

.recent-posts-header span a:hover {
    text-decoration: none;
}




.avatar {
    vertical-align: middle;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.post-info {
    align-items: center;
    margin-bottom: 25px;
}

.post-info span {
    margin-left: 10px;
}

.post-info svg {
    margin-left: auto;
}

.post-info span {
    font-size: 90%;
}



.post-text h1 {
    margin-bottom: 60px;
}

.post-text h6 {
    margin-top: 30px;
}

.post-text p {
    line-height: 2.25;
}

.post-text img.main-img {
    width: 50%;
    max-width: 360px;
    float: right;
    margin-left: 15px;
}

.post-text img {
    width: 50%;
    max-width: 360px;
}
.post-text img.right {
    float: right;
    margin-left: 15px;
}
.post-text img.left {
    float: left;
    margin-right: 15px;
}

@media all and (max-width: 575px) {
    .post-text img {
        width: 100%;
        max-width: none;
        margin: 10px 0;
    }

}