*,
*:after,
*:before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* html element 62.5% font-size for REM use */

body {
   padding: 30px 0 50px 20px;
   font-size: 17px;
   min-height: 100%;
   font-family: 'Pragati Narrow', sans-serif;
   color: #F03C19;
   background-color: #F9F9F9;
}

#content_wrapper {
	margin: 0 auto;
	text-align: left;
	width: 600px;
}

h1 {
	font-size: 68px;
	line-height: 75px;
	margin: 0px 0px 0.37em 0px;
	font-weight: 400;
	font-style: normal;
}

h2 {
	font-size: 28px;
	line-height: 50px;
	margin: 40px 0px 0.5em 0px;
}

p.intro {
	font-size: 20px;
	line-height: 28.89px;
	margin: 0px 0px 1.5em 0px;
}

p.author-line {
   text-align: right;
   font-size: 14px;
   line-height: 20px;
   margin: 3em 0px 1.5em 0px;
}

p {
	margin: 0px 0px 1.563em 0px;
}

#stern {
	position: absolute;
	visibility: hidden;
	float: left;
	width: 70%;
    top: 7%;
}

button {
	position: fixed;
	float: right;
	right: 1%;
	bottom: 1%;
	background-color: transparent;
	color: #F03C19;
	border: none;
	font-size: 10px;
	text-decoration: none;
	outline: 0;
}

a:link {
	text-decoration: underline;
	color: #F03C19;
}

a:hover {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
} 

/*** Works on common browsers ***/
::selection {
    background-color: #F03C19;
    color: #F9F9F9;
}

/*** Mozilla based browsers ***/
::-moz-selection {
    background-color: #F03C19;
    color: #F9F9F9;
}

/***For Other Browsers ***/
::-o-selection {
    background-color: #F03C19;
    color: #F9F9F9;
}

::-ms-selection {
    background-color: #F03C19;
    color: #F9F9F9;
}

/*** For Webkit ***/
::-webkit-selection {
    background-color: #F03C19;
    color: #F9F9F9;
}

