* {
	margin: 0;
	padding: 0;
} /* to remove the top and left whitespace */

html,
body {
	width: 100%;
	height: 100%;
} /* just to be sure these are full screen*/

canvas {
	display: block;
	cursor: none;
} /* To remove the scrollbars */

footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	font-family: ComfortaaRegular, sans-serif;
	font-size: 15px;
	color: rgb(255, 255, 255);
	color: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(27, 27, 27, 1) 0%);

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.8;
	}
}

@keyframes fadeOut {
	from {
		opacity: 0.8;
	}
	to {
		opacity: 0;
	}
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0;
	filter: alpha(opacity = 80);
	z-index: 99;

	animation: fadeIn 0.5s ease-out forwards;
	animation-iteration-count: 1;
}
.underline {
	display: inline;
	position: relative;
	overflow: hidden;
}
.underline:after {
	content: "";
	position: absolute;
	z-index: -1;
	right: 0;
	width: 0;
	bottom: 9px;
	background: #fff;
	height: 4px;
	transition-property: width;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}
.underline:hover:after,
.underline:focus:after,
.underline:active:after {
	left: 0;
	right: auto;
	width: 100%;
}

.welcome {
	color: #fff;
	z-index: 999;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 400px;
	margin-left: -200px;
	margin-top: -200px;
	-moz-border-radius: 6px 6px 4px 4px;
	-webkit-border-radius: 6px 6px 4px 4px;
	border-radius: 6px 6px 3px 3px;
}

.welcomeButton {
	position: relative;
	background-color: #525252;
	border: 2px, solid, #696969;
	font-size: 15px;
	color: #ffffff;
	font-family: ComfortaaRegular, sans-serif;
	margin-top: 10px;
	float: right;
	width: 100px;
	height: 50px;
	text-align: center;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	text-decoration: none;
	overflow: hidden;
	cursor: pointer;

	opacity: 0;
	animation: moveIn 1s ease-out forwards;
	animation-iteration-count: 1;
	animation-delay: 0.6s;
}

.welcomeButton:after {
	content: "";
	background: #818181;
	display: block;
	position: absolute;
	padding-top: 300%;
	padding-left: 350%;
	margin-left: -20px !important;
	margin-top: -120%;
	opacity: 0;
	transition: all 0.8s;
}

.welcomeButton:active:after {
	padding: 0;
	margin: 0;
	opacity: 1;
	transition: 0s;
}

#menu {
	position: absolute;
	display: flex;
	font-family: Helvetica, Arial, sans-serif;
	color: #aaaaaa;
	width: 100%;
}
#sliderDiv {
	float: left;
}

.collapsible {
	background-color: #505050;
	cursor: pointer;
	height: 10%;
	width: 2%;
	float: left;
	border: none;
	text-align: left;
	outline: none;
}

.active,
.collapsible:hover {
	background-color: #bbbbbb;
}

.content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.1s ease-out;
	margin-left: 40px;
}

.collapsible:after {
	content: '\02795';
	font-size: 13px;
	color: white;
	float: right;
	margin-left: 5px;
}

.active:after {
	content: "\2796";
}
