@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');

.news-container
{
	min-height: 70vh;
	padding: 20px;
	max-width: 85vw;
	margin: auto;
}

.container
{
	display: block;
}

h1,h2,h3,h4,h5,h6
{
	color: hsl(39, 76%, 23%);
	font-weight: 200;
	font-variant: small-caps;
}

hr
{
	width: 40%;
	margin-bottom: 20px;
}

.news-body
{
	white-space: pre-line;
	line-height: 2em;
}

.first-letter
{
	font-size: 4.5em;
	margin-top: 4px;
	float: left;
	text-transform: uppercase;
	color: hsl(39, 76%, 23%);
}

@media only screen and (max-width: 700px) {
	.news-container
	{
		padding: 0;
	}
}

blockquote {
    border-radius: 3px;
    position: relative;  /*  <--- */
    font-style: italic;
    text-align: center;
    padding: 1rem 1.2rem;
    width: 80%;  /* create space for the quotes */
    color: #4a4a4a;
    margin: 1rem auto 2rem;
    color: #4a4a4a;
    background: #E8E8E8;
}
/* -- create the quotation marks -- */
blockquote:before,
blockquote:after{
    font-family: FontAwesome;
    position: absolute;
    /* -- inside the relative position of blockquote -- */
    top: 13px;
    color: #E8E8E8;
    font-size: 34px;
}
blockquote:before{
    content: "\f10d";
    margin-right: 13px;
    right: 100%;
}
blockquote:after{
    content: "\f10e";
    margin-left: 13px;
    left: 100%;  
}
