/* Minification failed. Returning unminified contents.
(42,2): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(123,28): run-time error CSS1034: Expected closing parenthesis, found ','
(123,28): run-time error CSS1042: Expected function, found ','
(123,33): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(132,23): run-time error CSS1039: Token not allowed after unary operator: '-menu-speed'
(174,23): run-time error CSS1039: Token not allowed after unary operator: '-menu-speed'
 */
html {
	height: 100%;
	width: 100%;
}

header {
	line-height: 1em;
	margin-left: 20%;
}

body {
	background-attachment: fixed;
	background-image: url("/Content/Images/Shared/background.jpg");
	background-repeat: repeat-y;
	background-size: cover;
	color: darkgreen;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	height: auto;
	text-align: center;
	width: auto;
}

footer {
	border-radius: 20px;
	border-top-style: solid;
	border-top-width: 2px;
	border-top-color: cornflowerblue;
	margin-top: 10px;
	padding: 10px;
}

.footerLink {
	color: dodgerblue;
	cursor: pointer;
	font-weight: bold;
	text-decoration: none;
	text-decoration: solid;
	font-size: x-small;
}

:root {
	--menu-speed: 0.75s;
}

.navigationMenu {
	left: 0;
	position: fixed;
	top: -1px;
	z-index: 1;
}

	.navigationMenu .toggler {
		cursor: pointer;
		height: 70px;
		left: 0;
		opacity: 0;
		position: absolute;
		top: 0;
		width: 70px;
		z-index: 2;
	}

	.navigationMenu .hamburger {
		align-items: center;
		background: transparent;
		display: flex;
		flex-direction: column;
		height: 60px;
		justify-content: center;
		left: 0;
		padding: 1rem;
		position: absolute;
		top: 0;
		width: 60px;
		z-index: 1;
	}

		.navigationMenu .hamburger > div {
			align-items: center;
			background: darkgreen;
			display: flex;
			flex: none;
			height: 2px;
			justify-content: center;
			left: 0;
			position: relative;
			transition: 0.5s;
			top: 0;
			width: 100%;
		}

			.navigationMenu .hamburger > div:before, .navigationMenu .hamburger > div:after {
				background: inherit;
				content: "";
				height: 2px;
				left: 0;
				position: absolute;
				top: 10px;
				width: 100%;
				z-index: 1;
			}

			.navigationMenu .hamburger > div:after {
				top: -10px;
			}

	.navigationMenu .toggler:checked + .hamburger > div {
		transform: rotate(135deg);
	}

		.navigationMenu .toggler:checked + .hamburger > div:before,
		.navigationMenu .toggler:checked + .hamburger > div:after {
			top: 0;
			transform: rotate(90deg);
		}

	.navigationMenu .toggler:checked:hover + .hamburger > div {
		transform: rotate(225deg);
	}

.menu {
	align-items: center;
	background: rgb(77, 58, 58, 0.8);
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	opacity: 0;
	position: fixed;
	text-align: center;
	top: 0;
	transition: all var(--menu-speed) ease;
	width: 0;
}

	.menu > div {
		align-items: center;
		display: flex;
		flex: none;
		height: 100%;
		justify-content: center;
		left: -20px;
		opacity: 0;
		position: relative;
		transition: opacity 0.5s ease-in;
		text-align: center;
		top: -50px;
		width: 100%;
	}

	.menu ul {
		list-style: none;
	}

	.menu li {
		padding: 0.5rem 0;
	}

	.menu > div a {
		color: azure;
		font-size: 1rem;
		opacity: 0;
		text-decoration: none;
		transition: opacity 1s ease-in;
	}

	.menu a:hover {
		color: rgb(177, 177, 177);
		transition: color 0.5s ease-in;
	}

.navigationMenu .toggler:checked ~ .menu {
	opacity: 1;
	transition: all var(--menu-speed) ease;
	width: 100vw;
}

	.navigationMenu .toggler:checked ~ .menu > div {
		opacity: 1;
		transition: opacity 0.5s ease-in;
	}

		.navigationMenu .toggler:checked ~ .menu > div a {
			opacity: 1;
			transition: opacity 1s ease-in;
		}

