body {
	margin: 0;
	background-color: #FFF;
}
h1, h2, h3, h4, h5, h6 {
	text-align: center;
	margin-top: 0;
}
hr {
	background-color: black;
	border: 0.5px solid black;
	width: 80%;
	margin: auto;
}
/* Settings for the header bar of the page*/
header {
	background-color: var(--black);
	width: 100%;
	text-align: center;
	font-size: 20px;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	height: var(--head-height);
	border-bottom: 1px solid black;
}
#logo {
	height: 100%;
	position: relative;
	left: 5%;
	float: left;
	background-color: green;
}
nav {
	display: inline-block;
	position: relative;
	width: 60%;
}
nav ul{
	list-style-type: none;
	display: block;
	margin: 0;
	padding: 0;
	top: 0;
	overflow: hidden;
}
nav li {
	width: auto;
	float: left;
	height: var(--head-height);
}
nav li a {
	width: 100%;
	height: 100%;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: white;
}
nav li a:hover {
	background-color: #08080820;
}
#login {
	position: relative;
	height: 70%;
	top: 15%;
	width: 100px;
	right: 5%;
	float: right;
	border: 2px solid white;
	border-radius: 25px;
}
#login a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: white;
	border-radius: 25px;
}
#login a:hover {
	background-color: #C0C0C040;
	border-radius: 25px;
}
/* The main content of the page */
main {
	min-height: calc(100vh - var(--head-height) - var(--foot-height));
}
.name {
	font-style: italic;
}
/* The page's footer */
footer {
	border-top: 1px solid black;
	height: var(--foot-height);
	background-color: var(--black);
	text-align: center;
	color: var(--white);
}