/* use this if you like serif fonts
h1 {
	font-family: Garamond, Georgia, Times, serif;
	text-transform: uppercase;
	text-align: center;
	padding: 20px;
}

h2 {
	font-family: Garamond, Georgia, Times, serif;
	text-align: center;
}
*/

h1 {
	font-family: "Courier New", Courier, monospace;
	text-align: center;
	padding: 20px;
	}

h2 {
	font-family: "Courier New", Courier, monospace;
	text-align: center;
}

/* use this if you like sans serif body font
body {
	font-family: "Helevetica Neue", Helvetica, Arial, sans-serif;
	line-height: 1.4;
}
*/

body {
	font-family: "Courier New", Courier, monospace;
	line-height: 1.4;
	}	
	
small {
	font-family: "Courier New", Arial, sans-serif;
	color: gray;
}


.column {
	column-count: 3;
	column-span: all;
}

/* create three equal columns that float next to each other */
/* 
.column {
	float: left;
	width: 33.3%;
}
 */

/* clear float after the columns */
/* 
.row:after {
	content:"";
	display: table;
	clear: both;
}
 */

/* Responsive layout - 2 columns if (less than 600px wide) */
@media screen and (max-width: 600px) {
	.column {
		column-count: 2;
	}
}

/* Responsive layout - one column if less than 300px wide */
@media screen and (max-width:375px) {
	.column {
		column-count: 1;}
}


.footer {
	border-top: solid;
}