body {
	margin: 0px;
	padding: 0px;
	font-family: sans-serif;
	font-size: 0.9em;
	color: #232c3e;
	background-color: #ebebeb;
}

*, *::before, *::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.container {
	margin-top: 60px;
}

#loginf {
	width: 30em;
	margin: auto;
	border: 2px solid #27377C;
	border-radius: 1em;
	padding: 2em;
}
	
.button {
	background-color: #476bad;
	border: 2px solid #27377C;
	border-radius: 7px;
	color: white;
	padding: 8px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 1.1em;
	margin: 8px 4px;
	cursor: pointer;
}

a {
	font-weight: bold;
}

a:link {
	color: #27377C;
	text-decoration: none;
}

a:hover {
	color: #f54d27;
	text-decoration: underline;
}

a:active {
	color: #232c3e;
	text-decoration: none;
}

nav {
	overflow: hidden;
	background-color: #27377C;
	position: fixed;
	top: 0;
	width: 100%;
}

nav ul {
	list-style: none;
	display: flex;
    justify-content: center;
}

nav li {
	text-align: center;
	line-height: 50px;
	height: 50px;
	flex: 0 0 10em;
	margin-right: 1.5px;
	margin-left: 1.5px;
	background-color: #476BAD;
}

nav a {
	font-size: 1.1em;
	font-weight: bold;
	display: block;
}

nav a:link {
	color: #fff;
}

nav a:visited {
	color: #fff;
}

nav a:hover {
	background-color: #27377C;
	color: #fff;
	text-decoration: none;
}

nav a:active {
	background-color: #27377C;
	color: #fff;
}

table {
	border: 3px solid;
	border-color: #515151;
	caption-side: top;
	border-collapse: collapse;
	text-align: center;
	font: 1em sans-serif;
	width: 100%;
	margin-top: 0.2em;
}

td, th {
	border: 1px solid;
	padding-left:  7px;
	padding-right: 7px;
	padding-bottom: 4px;
	padding-top: 4px;
}

caption {
	font-weight: bold;
	padding-top: 0px;
	padding-bottom: 5px;
	font-size: 1.5em;
}

table th {
	font-weight: 900;
}

table td {
	font-weight: 400;
}