@font-face {
  font-family: 'Quicksand';
  src: url("../fonts/Quicksand-Light.ttf") format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Quicksand';
  src: url("../fonts/Quicksand-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Quicksand';
  src: url("../fonts/Quicksand-Medium.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Quicksand';
  src: url("../fonts/Quicksand-Bold.ttf") format('truetype');
  font-weight: 900;
  font-style: normal;
}

body {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-family: "Quicksand", sans-serif;
	font-weight: light;
	line-height: 1.5em;
	color: black;
	background-color: rgb(60, 68, 90);
}

input, button, a {
	transition-property: background-color, color, border-color;
	transition-duration: 0.25s;
	transition-timing-function: ease-in-out;
}

a {
	color: rgb(243, 176, 0);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5 {
	margin: 0 0 20px;
	font-weight: 400;
}

div.container {
	margin: auto;
	color: black;
	background-color: white;
}

div.top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	border-bottom: 1px solid black;
	pointer-events: none;
}

div.tint {
	background-image: url(../pics/nklogo.jpeg);
	background-size: 70px 50px;
	background-position: 40px 5px;
	background-repeat: no-repeat;
	position: relative;
	height: 118px;
}

div.test {
	float: right;
	line-height: 60px;
	color: red;
	margin-right: 10px;
}

span.logo {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: bold;
	width: 100%;
	height: 100%;
}

div.menu {
	font-family: "Quicksand";
	font-weight: 700;
	height: 60px;
	padding: 0 120px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
div.menu a {
	text-decoration: none;
	text-transform: uppercase;
	color: black;
	margin: 10px;
	padding: 0 4px;
}
div.menu a:hover {
	color: #999;
}
div.menu a.active {
	border-bottom: 1px solid #999;
}

div.appName {
	color: white;
	font-weight: 100;
	font-size: 200%;
	background-color: rgb(30, 35, 48);
	padding: 1em 0;
	text-align: center;	
}

hr {
	display: none;
}

div.page {
	padding: 1em;
}

div.footer {
	color: #333;
	background-color: rgb(240, 242, 243);
	padding: 1px 100px;
	font-size: 15px;
}

div.footer p {
	line-height: 1.5em;
	width: 400px;
}

div.footer a,
div.footer a:hover {
	color: #333;
	text-decoration: none;
	font-weight: normal;
}

table.form th {
	font-weight: normal;
}

table.results thead,
table.results thead a {
	background-color: #ddd;
	color: black;
	font-weight: normal;
}

button {
    border: 0;
    color: white;
    background-color: white;
    color: #000;
    padding: 6px 9px;
    font-weight: normal;
    font-size: 14px;
	text-transform: uppercase;
	border: 1px solid #000;
	border-radius: 0px;
}
