@font-face {
	font-family: 'Quicksand';
	src: url("../fonts/Quicksand-Regular.ttf") format('truetype');
	font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'Quicksand';
	src: url("../fonts/Quicksand-Regular.ttf") format('truetype');
	font-weight: bold;
    font-style: normal;
}

#player {
	position: absolute;
	z-index: -99;
	display: none;
}

body, html {
	padding: 0; margin: 0;
	width: 100%; height: 100%;
}

body {
	font-family: 'Quicksand';
	-webkit-font-smoothing: antialiased;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	text-shadow: 1px 1px 0px rgb(0, 0, 0);
	color: rgb(255,255,255);
	background-color: black;
	overflow: hidden;
	height: 100vh;
	margin: 0;
}

video {
	position: fixed; 
	right: 0; 
	bottom: 0;
	min-width: 100%; min-height: 100%;
	width: auto; height: auto;
	z-index: -2;
	background-size: cover;
	background-position: center; 
	filter: blur(4px);
    -webkit-filter: blur(4px); /* For Safari */
    -ms-filter: blur(4px);
}
h1 {
	margin-bottom: 50px;
}
.navbar {
	position: absolute;
	top: 20px;
	right: 20px;
}
.button-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
	opacity: 0;
	transform: translateY(50px);
	animation: fadeInUp 1s forwards;
}
.button {
	font-family: 'Quicksand';
	padding: 10px 20px;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.mute-button {
	font-family: 'Quicksand';
	background-color: #ff0000;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
	position: absolute;
	bottom: 1.7em;
	left: 1.7em;
}
.play-button {
	font-family: 'Quicksand';
	background-color: #00bb00;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
	position: absolute;
	bottom: 1.7em;
	left: 10em;
	display: none;
}
.mobile-warning {
	color: #A0A0A0;
	font-size: 12px;
	position: absolute;
	bottom: -0.2em;
	left: 14em;
	display: none;
	text-align: center;
}
.home-button-for-menu {
	position: absolute;
	bottom: 1.7em;
	left: 1.7em;
	top: 9%;
	width: 72px;
	height: 50px;
	vertical-align: middle !important;
}
.shop-button {
	background-color: #007bff;
	color: #ffffff;
}
.other-button {
	background-color: #2b416d;
	color: #ffffff;
}
.shop-button a {
	color: #ffffff;
	text-decoration: none;
}
.season-button {
	background-color: #ffffff;
	color: #121212;
}
.season-button a {
	text-decoration: none;
}
.button-not-allowed {
	cursor: not-allowed;
}
.season-buttons {
	display: flex;
	gap: 20px;
}
.separator {
	width: 0;
	height: 2px;
	background-color: #ffffff;
	margin: 20px 0;
	animation: extend 1s forwards;
}
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes extend {
	to {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	video {
		transform: translateX(35%)
	}
}
@media screen and (max-height: 600px) {
	.home-button-for-menu {
		left: 1.7em;
		top: 4.3em;
	}
	video {
		transform: translate(35%, 30%)
	}
}
@media screen and (max-width: 400px) and (max-height: 900px) {
	.home-button-for-menu {
		left: 1.7em;
		top: 5.1em;
	}
	video {
		transform: translateX(35%)
	}
	.play-button {
		left: 15.2em;
	}
	.mobile-warning {
		left: 21.2em;
	}
}
@media screen and (max-width: 400px) and (min-height: 600px) and (max-height: 700px) {
	.home-button-for-menu {
		left: 6.7em;
		top: 1.25em;
		height: 3.25em;
	}
}
@media screen and (max-height: 400px) {
	.home-button-for-menu {
		left: 1.7em;
		top: 4.3em;
	}
	.play-button {
		left: 43.7em;
	}
	.mobile-warning {
		left: 59.2em;
	}
}
@media screen and (max-width: 500px) and (max-height: 1000px) {
	.play-button {
		left: 15.2em;
	}
	.mobile-warning {
		left: 21.2em;
	}
}
@media screen and (min-width: 900px) and (max-height: 500px) {
	.play-button {
		left: 49.2em;
	}
	.mobile-warning {
		left: 66.2em;
	}
}
@media screen and (min-width: 400px) and (max-width: 430px) and (max-height: 1000px) {
	.play-button {
		left: 17.7em;
	}
	.mobile-warning {
		left: 24.2em;
	}
}
#warn {
	display: none;
	position: fixed;
	width: 100%; height: 100%;
	z-index: 99;
	background-color: black;
	color: white;
	padding: 20px;
	top: 0;
	left: 0;
}

#messages {
	display: none;
	margin-top: 20px;
	font-size: 18px;
}

#overlay {
	position: fixed;
	left: 0px; top: 0px;
	width: 100%; height: 100%;
	z-index: -1;
	background-repeat: repeat;
}

#error-box {
	position: absolute;
	margin: 12px;
	top: 0;
	right: 0;
	max-width: 40%;
	min-width: 100px;
}
.error {
	position: relative;
	padding: 6px;
	background-color: #e74c3c;
	border-radius: 2px;
	margin-top: 6px;
}
.error-title {
	font-weight: bold;
	margin-bottom: 6px;
}
.close-button {
	position: absolute;
	top: 0;
	right: 0;
	margin: 6px;
	font-weight: bold;
}
.close-button:hover {
	cursor: pointer;
}
.octicon {
    display: inline-block;
    vertical-align: text-top;
    fill: currentColor;
}