/* Page */
body {
 margin: 0;
 overscroll-behavior: contain;
}
.main-section {
	padding: 0.4em;
}

/* Header */
.main-header {
	padding: 5px;
}
.company-logo {
	max-height: 100px;
}

/** Main image */
.page-image {
	margin: auto; 
	display: block; 
	max-width: 100%;
}

/* Nav */
.topnav {
	background-color: pink;
	overflow: hidden;
}

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

.topnav a:hover {
	background-color: red;
	color: chartreuse;
}

.topnav a.active {
	background-color: purple;
    color: turquoise;
}

.topnav .icon {
	display: none;
}

/* Responsive */
@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {display: none;}
	.topnav a.icon {
		float: right;
		display: block;
	}
	.topnav.responsive {position: relative;}
	.topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
	.company-logo {
		max-height: 60px;
	}
}