.blog_post {
    display: grid;
    grid-template-rows: auto;
    width: 100%;
    margin-top: 2em;
    justify-items: center;
}

.date_post {
    margin-bottom: 1em;
    grid-row: 1 / 2;
}

.panel_body_blog_tags_post {
    grid-row: 2 / 3;
    place-self: center;
    margin-bottom: 1em;
    font-family: Josefin Sans, sans-serif;
    font-size: 1.2em;
}

.photo_and_text_post {
    grid-row: 3 / 4;
    place-self: center;
    margin-bottom: 1em;
}


.panel_body_blog_text_post p {
    background-color: #C2C5AA;
}

.panel_body_blog_photo_post,
.photo_and_text_post figure {
    text-align: center;
    margin-bottom: 3em;

}

.photo_post,
figure img {
    max-width: 550px;
    height: auto;
    object-fit: cover;
    border: 4px solid #000000;
    outline: 2px solid #000000;
    outline-offset: -10px;
}

.panel_body_blog_text_post,
.photo_and_text_post p {
    background-color: #C2C5AA;
    text-align: start;
    margin-bottom: 1em;
    width: 100%;
    font-family: Josefin Sans, sans-serif;
    font-size: 1.2em;
    line-height: 1.2em;
}


.panel_body_blog_lines_post {
    grid-row: 4 / 5;
    place-self: center;
    margin-bottom: 2em;
}


.button_post {
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
    background-color: #C2C5AA;
}





.panel_comment {
    margin-top: 7em;
    text-align: center;
    width: 100%;

    /* display: grid;
    grid-template-columns: 0.1fr 1fr 0.1fr;
    grid-template-rows: 1fr;
    justify-items: center; */
}

h2 {
    /* padding-top: 3em; */
    text-align: center;
}

#commentForm {
    width: 50%;
    margin-top: 1em;
    margin-bottom: 10em;
    background-color: #C2C5AA;
    margin-left: auto;
    margin-right: auto;
}


.input_panels {
    margin-top: 1em;
    text-align: center;
}

.input_styling {
    font-size: 1.5em;
    color: #000000;
    padding: 0.3em 0.5em;
    border: 3px solid #000000;
    outline: 1px solid #000000;
    outline-offset: -6px;
    background-color: #FFFFFF;
    width: 100%;

}

.input_styling::placeholder {
    color: #A4AC86;
    font-weight: normal;
}

#message {
    min-height: 16px;
    max-height: 1000px;
    resize: vertical;

}

.button {
    margin-top: 2em;
    margin-bottom: 2em;
}

#comments,
#comments p {
    width: 70%;
    margin: 1em auto 1em auto;
    background-color: #C2C5AA;
    text-align: left;
    font-family: Josefin Sans, sans-serif;
}