body
{
	font-family: "Calibri", "Carlito", "Arial";

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;

	min-height:100vh;

	margin:0px;
	padding:0px;

	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/bg.jpg) fixed center / cover no-repeat;

	overflow-x: hidden;
}

header
{
	background-color: rgba(10, 18, 41, 0.8);
	width:100%;

	position:fixed;
	top:0;
	left:0;
	z-index: 1000;

	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;

	color: white;

	box-shadow: 10px 2px 20px black;

	user-select: none;
}

a, a:active, a:focus
{
	outline: none;
}

#homelink
{
	font-size:1em;
	margin:0;
	padding:0;
	padding-left:1vw;
}

#homelink a
{
	display:flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	font-weight: normal;
	text-decoration: none;
	color: rgba(255,255,255,0.8);

	transition: all 0.3s;
}

#homelink #logo
{
	width:3em;
	height:3em;
	fill: rgba(255,255,255,0.8);
	stroke:none;
	transition: all 0.3s;
}

#homelink #sitetitle
{
	display:flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;

	padding:0.7em;
}

#homelink #sitename
{
	font-weight: bold;
	font-size: 2em;
}

#homelink #sitedesc
{
	font-size: 0.8em;
}

#homelink a:hover
{
	color: white;
	text-shadow: 0px 0px 5px lightblue;
}

#homelink a:hover #logo
{
	fill: white;
}

#datetime
{
	font-weight: bold;
	margin-left: 1vw;
	text-align: center;

	display:flex;
	flex-direction: row;
	justify-content:center;
	align-items: center;

	color: rgba(255,255,255,0.8);

	transition: all 0.3s;
}

#datetime > .icon
{
	width:2rem;
	height:2rem;
	margin-right: 0.5rem;
	transition: all 0.3s;
	fill: rgba(255,255,255,0.8);
}

#datetime:hover > .icon
{
	fill: white;
}

#datetime > div
{
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

#datetime:hover
{
	color: white;
	text-shadow: 0px 0px 5px lightblue;
}

#menu
{
	flex-grow: 1;
}

#menu input, #hamburger
{
	display:none;
}

nav
{
	display:flex;
	flex-direction: row;
	justify-content:space-around;
	align-items: center;

	height:100%;

	padding-right: 1vw;
	padding-left: 1vw;
}

nav > div
{
	width: 20%;
}

nav a
{
	display:flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;

	text-decoration: none;
	color:rgba(255,255,255,0.8);
	font-weight:bolder;
	font-size: 1.1em;

	transition: all 0.3s;

	height:100%;
	width:100%;
}

nav a svg
{
	margin-bottom: 0.25rem;
}

nav a:hover
{
	color:white;
	text-shadow: 0px 0px 5px lightblue;
}

nav a:hover svg
{
	fill:#ffffff;
}

#nav_profile
{
	padding-right:4vw;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#avatar
{
	display: block;
	margin-right: 0.5em;
	width: 2em;
	height: 2em;
	border-radius: 1000px;
	border: solid 2px rgba(255,255,255,0.8);

	transition: all 0.5s;
	overflow: hidden;
}

#avatar img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#nav_profile:hover #avatar
{
	border-color: white;
	fill: white;

}

#nav_profile:hover .user
{
	fill: white;
}

#nav_profile:hover #user
{
	color:white;
	text-shadow: 0px 0px 5px lightblue;
}

#user
{
	width:100%;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	text-align: center;
	font-weight: bold;
	font-size: 1.1rem;
	color:rgba(255,255,255,0.8);

	transition: all 0.3s;
}

#user svg
{
	display: block;
	margin-right: 0.5rem;
}

#nav_profile #user_options
{
	position: absolute;
	top:-15em;
	opacity: 0;

	background-color: rgba(10, 18, 41, 0.8);
	z-index:-100;

	transition: opacity 0.5s;
}

#user_options a
{
	display: block;
	white-space: nowrap;

	padding-left:1em;
	padding-right:1em;
	padding-top:0.8em;
	padding-bottom:0.8em;

	color:rgba(255,255,255,0.8);
	text-decoration: none;
	font-weight: bold;

	transition: all 0.3s;
}

#user_options a:hover
{
	color:white;
	text-shadow: 0px 0px 5px lightblue;
}

#user_options a:hover svg
{
	fill:white;
}

#user_options a svg
{
	vertical-align:middle;
	padding-right: 1em;
}

#nav_profile:hover #user_options
{
	top: 4.8em;
	opacity: 1;
}

header .icon
{
	stroke:none;
	fill:rgba(255,255,255,0.8);
	width:1.5rem;
	height:1.5rem;
	transition: all 0.3s;
}

footer
{
	background-color: rgba(10, 18, 41, 0.8);
	min-height: 3em;
	width:100%;
	margin-top: 3em;
}

.strike {
	text-decoration: line-through;
}
