/* Basic reset */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	min-height: 100%;
}
body{
	font-family: BlitzMain, sans-serif;
	display: flex;
	height: 100vh;
	justify-content: center;
	align-items: center;
	background: linear-gradient(15deg, #cfc, #ffc, #fcc);
	overflow: hidden;
}
span{
	display: block;
	width: 100%;
	opacity: 0;
}
span:nth-child(1){
	animation: fadeIn 1s forwards 0s;
}
span:nth-child(2){
	animation: fadeIn 1s forwards 0.2s;
}
span:nth-child(3){
	animation: fadeIn 1s forwards 0.4s;
}
span:nth-child(4){
	animation: fadeIn 1s forwards 0.6s;
}
span:nth-child(5){
	animation: fadeIn 1s forwards 0.8s;
}
h1{
	font-size: 3rem;
	margin-bottom: auto;
}
h2{
	font-size: 2rem;
	margin-bottom: auto;
}

@font-face{
	font-family: BlitzMain;
	src: url("BlitzMain.otf") format("opentype");
}
@keyframes fadeIn{
	0%{
		opacity: 0;
		transform: translateY(-100px);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}
.container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 20px;
	text-align: center;
	align-items: center;
	background-color: #fff;
	z-index: 1;
}
.logo{
	margin-top: auto;
	border-radius: 50%;
}
.discord{
	display: block;
	color: #fff;
	font-size: 1.5rem;
	padding: 0px 0px;
	text-decoration: none;
	border-radius: 25px;
	background-color: #2c2f33;
}
.serverlist{
	width: 100%;
	margin-bottom: 1rem;
	background: rgba(120,120,220,.12);
	border: 2px solid rgba(220,200,220,.0);
	border-radius: 12px;
	border-collapse: separate;
	text-align: left;
}
.serverlist th{
	font-size: 1.5rem;
	font-weight: normal;
}
.serverlist th,td{
	margin: 0px;
	padding-left: 8px;
	padding-right: 8px;
}
.serverlist caption{
	font-size: 2rem;
	font-weight: normal;
}
.serverlist td:nth-of-type(2), th:nth-of-type(2){
	text-align: right;
}
#sticker-layer{
	position: fixed;
	top: 0; left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	pointer-events: none;
	user-select: none;
}
.sticker-wrapper {
	position: absolute;
	pointer-events: none;
	user-select: none;
	will-change: transform;
}
.sticker-wrapper img {
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
	user-select: none;
}

@media screen and (max-width: 800px) and (orientation: portrait){
	body{
		font-family: BlitzMain, sans-serif;
		background-color: #ffffff;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100vh;
		background: linear-gradient(15deg, #cfc, #ffc, #fcc);
	}
	h1{
		font-size: 2rem;
		margin-bottom: 0;
		color: #000;
	}
	h2{
		font-size: 1.5rem;
	}
	.container{
		width: 100%;
		margin: 0;
		text-align: center;
		align-items: center;
		background-color: transparent;
		z-index: 1;
	}
	.logo{
		margin-top: 1rem;
	}
	.serverlist{
		background: rgba(120,120,200,.1);
		margin-left: 5%;
		margin-right: 5%;
		margin-bottom: 1rem;
		width: 90%;
	}
	.discord{
		margin-left: 5%;
		margin-right: 5%;
		width: 90%;
	}
	.serverlist th{
		font-size: 1.3rem;
	}
	.serverlist caption{
		font-size: 0.5rem;
		font-weight: normal;
	}
	#sticker-layer{
		display: none;
	}
}
