* {
	box-sizing: border-box;
}

body { 
	font-size: .95em; /* 1em = 16px = allows for sizing in the browser */
	font-style: normal;
	font-family: "Times New Roman", Times, serif;
  	color: #00004d; 
  	background: transparent url(../images/background_body.jpg) repeat;
}

.header {
	padding: 30px;
	text-align: center;
	font-size: 35px;
}

.column1, .column2, .column3 {
	float: left;
	padding 10px;
	text-align: center;
}
.column1, .column3 {
	width: 25%;
}

.column2 {
	width: 50%;
}

.column3 {
	float: right;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

#footer {
	width: 100%;
	color: #262626;
	padding: 10px;
	text-align: center;
}

@media (max-width: 600px) {
	.column1, .column2, .column3 {
		width: 100%;
	}
}
