.wrapper {
	padding: 30px;
	margin: 0;
	width: 88%;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
	padding-bottom: 100px; /* Footer height + desired gap */
}

p {
	margin-bottom: 20px;
	line-height: 1.5;
    letter-spacing: 0.02em;
}

h1 {
	font-family: 'Crete Round', serif;
	font-weight: bold;
	font-size: 45px;
	margin-bottom: 20px;
}

h2 {
	font-family: 'Montserrat', sans-serif;
	color: #222;
	font-size: 30px;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

h3 {
	font-family: 'Crimson Text', serif;
	color: #000;
	font-size: 31px;
    letter-spacing: 0;
	text-align: center;
	margin-bottom: 20px;
}
h3:after {
  content: '';
  display: flex;
  height: 1px;
  width: 15%;
  margin: auto;
  border-bottom: solid 1px #d8d8d8;
}

h4 {
	font-family: 'Crimson Text', serif;
	color: #000;
	font-size: 31px;
    letter-spacing: 0;
	margin-bottom: 20px;
}

h5 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	margin-bottom: 20px;
}

h6 {
	color: #000;
    letter-spacing: 0;
	font-size: 18px;
	margin-bottom: 20px;
}

a {
	text-decoration: none;
	color: #0394e2;
}

a:hover {
	text-decoration: underline;
}

strong {
	font-weight: bold;
}

small {
	font-size: 13px;
	color: #777;
	font-style: italic;
}

sup {
	vertical-align: super;
    font-size: smaller;
	font-size: 80%;
}

.underlined {
	text-decoration: none;
	position: relative;
}

.underlined:after {
    position: absolute;
    height: 1px;
    margin: 0 auto;
    content: '';
    left: 0;
    right: 0;
    width: 80%;
    background-color: #d8d8d8;
    bottom: -5%; /* Required heavy adjustment due to line height */
}

.subtitle {
	text-align: center;
	width: 670px;
	margin: auto;
	margin-bottom: 90px;
}

.button {
	border: none;
	background: #3498db;
	color: #fff;
	padding: 8px 20px;
	font: 18px "Montserrat", sans-serif;
	cursor: pointer;
	-webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.button:hover {
	background-color: #3cb0fd;
}
blockquote {
	padding-left: 40px;
}

.unorderedList {
	list-style: disc;
	margin-left: 40px;
}