html, body{
	/*background: #1E1B1A;*/
	min-height: 100%;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'OpenSans-Light', sans-serif;
	letter-spacing: 0.03em;
	line-height: 1.5;
	display: flex;
	flex-direction: column;
	height: 100vh;
}

#header{
	width: 100%;
	background: #333333;
	text-align: center;
	overflow: hidden;
	font-family: 'Montserrat', sans-serif;
	padding-top: 80px;
	padding-bottom: 80px;
	flex-shrink: 0;
}

#header h1{
	color: #ffffff;
	text-transform: uppercase;
	font-size: 4em;
	letter-spacing: 0.10em;
}

#menu{
	background: #1980b7;
	overflow: hidden;
	padding-left: 2em;
	padding-right: 2em;
	flex-shrink: 0;
}

#main {
	flex: 1 0 auto;
}

#footer {
	background: #333333;
	padding: 5em 0;
	text-align: center;
	color: #ffffff;
	height: 50px;
	flex-shrink: 0;
}

.main-content{
	background: #ffffff;
	min-height: 300px;
}

	.main-content h1{
		color: #1980b7;
		font-family: 'Montserrat', sans-serif;
		margin-top: -5%;
	}

	.main-content h2{
		color: #115e87;
		font-family: 'Montserrat', sans-serif;
		margin: 0px;
		font-size: 1.3em;
	}

	.main-content h3{
		font-weight: bolder;
		margin: 0;
		padding: none;
		color: #115e87;
		font-family: 'Montserrat', sans-serif;
		font-size: 1em;
		display: inline;
	}

.standard-button{
	background: #1980b7;
	text-align: center;
	color: #ffffff;
	border: none;
	padding: 8px 24px;
	border-radius: 12px;
	font-size: 16px;
}

.standard-button:hover {
	background-color: #125e87;
	color: white;
}

.save-button {
	background: #1980b7;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	color: #ffffff;
	border: none;
	padding: 0.6em;
	border-radius: 12px;
}

.save-button:hover {
	background-color: #125e87;
	color: white;
}

.cancel-button {
	background: #616161;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	color: #ffffff;
	border: none;
	padding: 0.6em;
	border-radius: 12px;
}

.cancel-button:hover {
	background-color: #303030;
	color: white;
}

.bold-text{
	font-weight: bold;
}

.invalid-message{
	color: #bc2b2b;
	font-family: 'OpenSans-Italic', sans-serif;
	font-size: 0.8em;
	text-align: center;
}

.form-box{
	padding: 1em;
	line-height: 1.7;
}

.table-test{
	border-collapse: collapse;
}
	.table-test td,th{
		border: 1px solid #dddddd;
		text-align: left;
	}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.add-button {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #555555;
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	border-radius: 12px;
}

.add-button:hover {
	background-color: #303030;
	color: white;
}