@font-face {
	font-family: 'Consolas';
	src: local('Consolas'),
		url('/resources/font/Consolas.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.backstage {
	background: url('pvpban.png');
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	overflow: hidden;
}
body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: 'Consolas';
	position: relative;
	text-align: center;
	/*text-size-adjust: 160%;*/
	}
body::after {
	content: "";
	background: #000;
	opacity: 0.96;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: -2;   
}
body::-webkit-scrollbar {
	background-color: rgba(0, 0, 0, 0);
	width: 8px;
}
body::-webkit-scrollbar-thumb {
	background: linear-gradient(-45deg, #777, #ddd);
	border-radius: 10px;
}

a {
	color: #f00;
	text-decoration: none;
}
a:hover {
	color: #f80;
	font-style: normal;
}
a img:hover {
	filter: brightness(0.42) sepia(1) contrast(5) hue-rotate(-45deg) saturate(5);
}

.header-wrapper {
	height: 224px;
}
.header-background {
	background-position: center;
	background: url('pvpban.png');
	filter: saturate(0.5) brightness(0.5);
	width: 100%;
	height: 100%;
	position: relative;
}	
.header-content {
	font-size: min(15vw, 1000%);
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: -4px -4px black, -4px 4px black, 4px 4px black, 4px -4px black;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	top: -100%;
	height: 100%;
}

.download {
	line-height: 100px;
	padding-top: 40px;
}
.download-header {
	font-size: 250%;
}
.download a {
	display: inline-block;
	width: 600px;
	height: 100px;
	border: 3px solid black;
	border-radius: 13px;
	background: #300;
	color: #FFF;
	font-style: normal;
	font-size: 500%;
	text-shadow: -2px -2px black, -2px 2px black, 2px 2px black, 2px -2px black;
}
.download a:hover {
	color: #F00;
	border-color: red;
}
.download a:hover img {
	mix-blend-mode: color-dodge;
}

.featuring {
	width: min(96vw, 840px);
	border: 32px #fff solid;
	border-image: url("sBorder_0.png");
	border-image-slice: 32;
	border-image-repeat: round;
	padding: 0 20px;
	margin: 40px auto 0;
	text-align: left;
	background: rgba(0, 0, 0, 0.75);
}

.pvpScore {
	padding-top: 40px;
}
h1 {
	font-size: 3em;
}
table {
	border: 2px #fff solid;
	border-radius: 4px;
	border-spacing: 0;
	margin: auto;
	width: min(96vw, 944px);
	background: rgba(0, 0, 0, 0.75);
}
th {
	background-color: #222;
	font-size: 24px;
	border: 1px #fff solid;
}
td {
	text-align: center;
	border: 1px #888 solid;
	padding: 10px;
}
	
#ft {
	margin-top: 25px;
	font-size: 75%;
}
#ft img {
	max-width: 64px;
}

.home-button {
	position: absolute;
	top: 4px;
	left: 4px;
	z-index: 2;
}
.home-button img {
	filter: opacity(0.75);
}
.home-button img:hover {
	filter: drop-shadow(2px 6px 6px #204);
}

.backstage-almi {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.almi {
	--size: 1vw;
	width: var(--size);
	height: var(--size);
	position: absolute;
	top: -5vh;
	z-index: -1;
	user-select: none;
}

@keyframes snowfall {
	0% {
		top: 0;
	}
	100% {
		top: 110%;
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	33% {
		transform: rotate(120deg);
	}
	66% {
		transform: rotate(240deg);
	}
	100% {
		transform: rotate(360deg);
	}
}