.main-post-title {
    background-color: #4fa695;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 40px;
}

.main-post-title p:first-child {
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
}

.main-post-title p {
    text-transform: capitalize;
    margin: 0;
}

.main-post-content {
    margin: auto;
    max-width: 80vw;
    text-align: justify;
}


.main-post-content h2 {
    margin: 40px 0 30px 0 !important;
    font-size: 30px;
    max-width: 80%;
    color:#5B99AC;
    font-size: 30px;
}

.main-post-content p {
    color: rgb(80,80,80);
    max-width: fit-content;
    margin-inline: auto;
}

.main-post-content img {
    min-width: 60vw;
    margin: 30px auto;
}

@media only screen and (max-width:602px) {
    .main-post-content {
        max-width: 80%;
    }

    .main-post-content img{
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (min-width:602px) and (max-width: 992px){
    .main-post-content {
        max-width: 80vw;
    }

    .main-post-content h2 {
        font-size: 40px;
    }

    .main-post-content p {
        font-size: 18px;
    }

    .main-post-content img{
        min-width: 100%;
        width: 100%;
        /* max-width: 100%; */
    }
}