body {
	margin: 0;
	padding: 0;
	font-family: Cambria;
}

.container {
	box-sizing: border-box;
	width: 80%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 30vw;
}

column-right {
	margin-top: 12%;
	float: left;
	width: 33%;
	text-align: center;
	font-style: italic;
	font-size: 0.9vw;
}

column-middle {
	margin-top: 12%;
	float: left;
	width: 33%;
	text-align: center;
	font-style: italic;
	font-size: 0.9vw;
}

column-left {
	margin-top: 12%;
	float: left;
	width: 33%;
	text-align: center;
	font-style: italic;
	font-size: 0.9vw;
}

.home {
	background: #f3dc0d;
	border-radius: 50%;
	width: 8vw;
	height: 1.5vw;
	line-height: 1.5vw;
	padding: 0 1vw;
	color: black;
	margin: 0.5vw auto;
	position: relative;
	z-index: -2;
}

.zoom img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	border: 0.1vw solid #ccc;
	background: #eee;
	margin: auto;
	padding: 1.2vw 1.2vw;
}

.zoom:hover img {
	-webkit-transform: scale(1.9);
	transform: scale(2.2);
}

.topnav {
	overflow: hidden;
	background-color: #333;
}

.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.topnav a:hover {
	background-color: #ddd;
	color: black;
}

.topnav a.active {
	background-color: #04AA6D;
	color: white;
}

.topnav .icon {
	display: none;
}

@media screen and (max-width: 900px) {
	.topnav a:not(:first-child) {
		display: none;
	}

	.topnav a.icon {
		float: right;
		display: block;
	}
}

@media screen and (max-width: 900px) {
	.topnav.responsive {
		position: relative;
	}

	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}

	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}

.centering {
	display: block;
	margin-left: auto;
	margin-right: auto;
}