body {
	background-color: #007a76;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Raleway', sans-serif;
	font-size: 1.5vh;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
	margin-bottom: 10px;
}
p {
	margin: 10px 0;
}
.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: white;
}
.landing {
	margin: auto;
	text-align: center;
}
.landing .logo {
	width: 100%;
	object-fit: contain;
	max-height: 50vh;
	margin: 20px 0;
}
.footer {
	background-color: rgb(0, 142, 179);
	position: fixed;
	bottom: 0;
	padding: 10px 0;
	width: 100%;
	color: white;
	text-align: center;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.footer .links {
	margin: 0 0 10px 0;
}
a,
a:visited,
a:active {
	color: rgb(149, 193, 31);
	text-decoration: none;
	text-transform: uppercase;
}
a:hover,
a:focus {
	color: white;
}
.footer a,
.footer a:visited {
	color: white;
	margin: 15px;
}
.bold {
	font-weight: bold;
}
