@charset "UTF-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
}

.container {
	position: relative;
	align-content: center;
	width: 100%;
	margin: 20px 10px 40px 10px;
	}

h2 { postion: relative;
	text-align: center;
	padding-top:20px;
	padding-right: 20px;
}

h3 {
	display: block;
	text-align: center;
}

h4 {
	display: block;
	text-align: center;
	color: gray;
}

p { text-align: left;
	margin-left:20px;
	margin-right: 40px;
	margin-bottom: 80px;
	line-height: 1.5rem;
}

.header {
	width: 100%;
	text-align: center;
	padding-top: 20px;
}

.row {
	display: -ms-flexbox; /* IE10 */
	display: flex;
	-ms-flex-wrap: wrap; /* IE10 */
	flex-wrap: wrap;
	margin-top:20px;
	justify-content: center;
}

.column {
	-ms-flex: 45%; /* IE10 */
	flex: 45%;
	max-width: 45%;
	padding: 0 8px;

}

.column img {
	position: relative;
	display: block;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	margin-bottom: 10px;
	vertical-align: middle;
	width: 80%;
}

.special img {
	position: relative;
	float: left; 
	width: 50%;
}


.special a {
	position: relative;
	float: left; 
	margin-left: 30%;
	width: 100%;
	line-height: 2em;
	font-display: block;
	font-weight: bold;
	text-decoration: none;
	color: black;
}

footer {
	display: block;
	position: fixed;
	float: none;
	clear: both;
	width: 100%;
	background-color: #717070;
	padding: 8px 0px 20px 0px;
	height: 30px;
	bottom: 0px;
}

.copyright {
	text-align: center;
	background-color: #717070;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
	font-family: "Source Sans Pro";
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
	.column { 
		-ms-flex: 50%;
		flex: 50%;
		max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 90%;
    flex: 90%;
    max-width: 90%;
}
	.row{
	padding-top: 10px;
}
	h2 {
		padding-top: 10px;
	}
	.header img {
		width: 95%;
	}

}

