body {
	margin: 0px;
	background-image: url('/background.jpg');
	background-size: cover;
	background-color: #878787;
	background-repeat: no-repeat;
	background-position-x: center;
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding-left: 10px;
	padding-right: 10px;
}
a {
	color: inherit;
}
#logo {
	width: 70px;
	height: fit-content;
	filter: drop-shadow(1px 1px 4px black);
}
.h1_main_header {
	font-size-adjust: none;
	font-size:50px;
	margin: 0px;
}
#center_block_header {
	display:grid;
	grid-template-columns: auto auto auto;
	grid-template-rows: auto auto;
	justify-content:center;
	align-items: center;
	column-gap:20px;
	padding-bottom: 0px;
}
#ping_info {
	grid-column-start: 3;
	margin: 0px;
	font-size: 14px;
	justify-self: center;
}
.tooltipelem {
	position: relative;
	border-bottom: 1px dashed #000080;
}
.tooltiptext {
	visibility: hidden;
	width: 300px;
	background-color: rgba(0, 0, 0, 0.85);
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	font-size: 12px;
	/* Position the tooltip */
	position: absolute;
	z-index: 1;
	top: 100%;
	left: -50px;
}
.tooltipelem:hover .tooltiptext {
	visibility: visible;
}
.tooltiptext.fade-out { 
	opacity: 0; 
	transition: opacity 0.5s;
}

.center_frame {
	width: 100%;
	max-width: 800px;
	box-shadow: 0px 1px 5px 0px #000000;
	backdrop-filter: blur(2px);
}
.center_block {
	font-family: minecraft;
	text-align: center;
	color: #111111;
	font-size: 18px;
	box-sizing: border-box;
	border-color: rgba(255, 255, 255, 0.1);
	padding: 10px;
	background-color: rgba(236, 209, 164, 0.3);
	text-shadow: -1px -1px 15px #404040;
}
.server_block {
	border-color: rgba(255, 255, 255, 0.1);
	background-color: rgba(236, 209, 164, 0.9);
	display:grid;
	justify-content: space-between;
	align-items: end;
	grid-template-columns: auto auto;
	grid-template-rows: auto auto;
	padding: 10px;
	row-gap: 0px;
	border-radius: 6px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.server_block_left {
	margin: 5px 0px 5px;
	justify-self: start;
}
.server_block_right {
	position: relative;
	margin: 5px 0px 5px;
	justify-self: end;
}
#copyright {
	justify-self: end;
	font-size: 10px;
	margin: 0px;
}
@font-face {
	font-family: 'minecraft'; 
	src: url('/minecraft.ttf');
	font-display: block;
}
@media screen and (max-width: 700px) {
	#center_block_header {
		grid-template-columns: auto auto;
	}
	#ping_info {
		grid-column-start: 2;
	}
	.h1_main_header {
		font-size: 40px;
	}
	.tooltiptext {
		width: 200px;
		right: 0;
		left: auto;
	}
	.server_block {
		padding: 10px 3px 10px;
		grid-template-columns: 100%;
	}
	.server_block_left {
		margin: 5px 0px 5px;
		justify-self: center;
	}
	.server_block_right {
		margin: 5px 0px 5px;
		justify-self: center;
	}
	h2.server_block_left {
		font-size: 20px;
	}
	h3.server_block_right {
		font-size: 15px;
	}
	p.server_block_left {
		font-size: 15px;
	}
}
