.single-post.container {

    display: flex;
    flex-direction: column;
    max-width: 85%;
    width: 100%;
    font-size: 1.5rem;
    background-color: #ffffff4d;
    border-radius: 15px;
    margin: 2.5rem auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;

}

.single-post article {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.post-title {
    color: #fcce31;
}


.post-title::after {
    display: block;
    position: relative;
    content: "";
    max-width: 5%;
    width: 100%;
    background: #000;
    height: 1.5px;
    margin: 1rem auto 0 auto;
    box-sizing: content-box;
}

.post-meta {
    font-size: 17px;
    margin: 0;
    font-weight: bold;
}

.post-content {
    margin: 1.3rem 1rem 1rem 1rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    

    .single-post.container {
        margin-top: 100px;
    }

}