In your css you say you want the paragraph in a div with the class ‘prose’ to have a certain style. This means you should either make sure your text is in a paragraph (which is the neatest way to do it, as text should generally be in a paragraph) or remove the paragraph factor from your css.
So you can fix this with css;
.prose {
text-indent:8em;
}
Or fix it with a bit of html;
<div class="prose"><p> text </p></div>