* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html, body {
	font-family: 'Montserrat', otallatin,arial,helvetica,sans-serif;
	font-size: 16px;
	color: rgb(2, 83, 66);
	background: rgb(230, 238, 236);
}

.centered {
	text-align: center;
}
.left {
	text-align: left;
}
h1 {
	position: relative;
	font-size: 8rem;
	height: 8rem;
}
h1 {
	color: #74A097;
}
h2 {
	text-transform: uppercase;
	margin-bottom: 20px;
	margin-top: 40px;
	font-size: 3rem;
	font-weight: bold;
}
h3 {
	font-weight: bold;
	margin-bottom: 20px;
	margin-top: 30px;
	font-size: 1.15rem;
}
h4 a {
	font-size: 1.5rem;
}
h5 {
	text-align: center;
	font-size: 3rem;
	color: #74A097;
	text-transform: uppercase;
}

ol {
	padding-left: 20px;
}
li {
	margin-bottom: 10px;
	padding-left: 10px;
	line-height: 130%;
}
p {
	margin: 10px 0;
	line-height: 130%;
}
a {
	color: rgb(2, 83, 66);
}
a:hover {
	text-decoration: underline;
}

.columns {
	display: flex;
	flex-flow: row;
	width: 100%;
}
.columns.columns-2 .column {
	width: 50%;
}
.columns.columns-2 .column:first-child {
	padding-right: 10px;
}
.columns.columns-2 .column:last-child {
	text-align: right;
	padding-left: 10px;
}

.columns.columns-5 .column {
	width: calc(100% / 8);
	padding: 20px;
}
.columns.columns-5 .column:nth-child(3) {
	width: calc((100% / 8) * 2);
}
.columns.columns-5 .column:last-child {
	width: calc((100% / 8) * 3);
}
.columns.columns-5 .column div {
	display: block;
	height: 200px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position-y: center;
}
.columns.columns-5 .column:nth-child(1) div {
	background-image: url(../images/question.png);
}
.columns.columns-5 .column:nth-child(2) div {
	background-image: url(../images/plus.png);
}
.columns.columns-5 .column:nth-child(3) div {
	background-image: url(../images/bingo.png);
}
.columns.columns-5 .column:nth-child(4) div {
	background-image: url(../images/equals.png);
}
.columns.columns-5 .column:nth-child(5) div {
	background-image: url(../images/card.png);
}


body > div {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	display: block;
}
footer {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 2px Solid Darkgreen;
	padding-bottom: 40px;
}
footer a {
	text-decoration: none;
}

.button {
	display: inline-block;
	padding: 15px 30px;
	background: rgb(2, 83, 66);
	color: rgb(230, 238, 236);
	text-decoration: none;
	font-weight: bold;
}




@media only screen and (max-width: 1000px) {
	html, body {
		font-size: 12px;
	}
	.columns.split-on-mobile {
		display: block;
		width: 100%;
	}
	.columns.split-on-mobile .column {
		display: block;
		width: 100%;
	}
	
	h4 a {
		font-size: 2rem;
	}
	
}
