.body {
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
}

.post {
    display: block;
    padding: 5%;
    border-radius: 2%;

    margin: 5%;
}

.post p {
    color: #fcf579;
    text-align: justify;
}

.post .postTitle {
    font-size: 125%;
    font-weight: bold;
}

.post .postSubtitle {
    font-size: 150%;
}

.post .date {
    font-size: 150%;
}

.post .blog-body {
    font-size: 100%;
    margin-top: 5%;
}

/* SMALL SIZED DEVICES */
@media screen and (min-width: 450px) {
    .post .postTitle {
        font-size: 175%;
        font-weight: bold;
    }
}

/* MEDIUM SIZED DEVICES */
@media screen and (min-width: 768px) {
    
}

/* LARGE SIZED DEVICES */
@media screen and (min-width: 992px) {
    .post {
        width: 65%;
    }
}

@media screen and (min-width: 1200px) {
    .body {
        padding-top: 150px;
    }

    .post {
        width: 45%;
        max-width: 900px;
        margin: 1%;
        padding: 3%;
    }

    .post .postTitle {
        font-size: 220%;
    }

    .postSubtitle {
        font-size: 200%;
    }

    .post .blog-body {
        font-size: 130%;
    }

    .post .titleDate {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
}