html {
	font-family: 'Slabo 27px', serif;
	font-size: 1.4em;
	height: 100%;
	width: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
	background-color: #fff;
}

body .row {
	height: 100%;
	margin-bottom: 0;
}

body .col {
	display: flex;
	flex: 1;

	height: 100%;
    flex-direction: column;
    justify-content: center;
}

body a {
	color: #6d6e70;
	width: 100%;
	text-decoration: none;

	padding: 0px;
	margin: 0px;
}

/* visited link */
body a:visited {
    color: #6d6e70;
}

/* mouse over link */
body a:hover {
    color: #6d6e70;
    text-decoration: underline;
}

/* selected link */
body a:active {
    color: #6d6e70;
}

body p {
	margin: 0;
}

body strong {
	font-weight: 700;
}

body .imagery {
	text-align: center;
}

body .responsive-img {
  float:right;
	height: 200px;
}

@media only screen and (max-width: 600px) {
	body {
		font-size: 1em;
	}
  body .responsive-img {
    float: none;
  }

    body .col {
	   height: auto;
	}
	body .imagery {
		margin-top: 40px;
	}
	body .content {
		margin-top: 40px;
	}
}

