html,
body {
	height: 100%;
	position: relative;
}

body {
	width: 100vw;
	min-height: 100vh;
	overflow-x: hidden;
	box-sizing: border-box;
	background-color: #4169e1;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

.font {
	font-family: 'Open Sans', sans-serif !important;
}

.nav-bar {
	width: 100vw;
	text-align: center;
	background-color: #4169e1;
}

.content {
	width: 100vw;
	height: auto;
	text-align: center;
	background-color: #4169e1;
	display: block;
	position: relative;
}

ul {
	list-style-type: none;
	padding: 0;
}

a {
	text-decoration: none;
	text-transform: none;
	color: inherit;
}

.logo img {
	width: 30%;
	display: block;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

.map img {
	/* height: 380px;  The height is 380 pixels */
	width: 100%;  /* The width is the width of the web page */
}

.footer {
	margin-top: 50px;
	width: 100vw;
	background-color: #4169e1;
	text-align: left;
	height: auto;
	padding: 20px;
	font-style: normal;
	size: 22px;
	bottom: 0;
}

@media screen and (max-width: 768px) {

	.map img {
		width: 75%;
		margin: 0 auto;
	}

	.logo img {
		width: 65%;
	}

	.font, h3, h2 {
		font-weight: 500;
		padding-left: 10px;
		padding-right: 10px;
	}

}

/* .nav li a:hover {
	background-color: #bfbfbf;
	font-weight: bold;
}

.nav li a {
	font-size: 24px;
	border-radius: 5px;
	padding: 3px;
} */