@font-face {
	font-family: "Minecraft";
	src: url("./font/minecraft.ttf");
}

* {
	font-family: sans-serif;
	margin: 0;
}

body {
	background-color: #252525;
}

header {
	display: flex;
	align-items: center;
	background-color: #252525AA;
	box-shadow: 0 0 0 10px #252525ee;
	width: 100%;
}
nav {
	font-size: 20px;
	overflow: auto;
}
nav ul {
	list-style-type: none;
	display: flex;
}
nav li {
	background-color: #252525AA;
	padding: 15px;
	margin: 10px;
	border-radius: 10px;

	box-shadow: 0 0 0 5px #252525ee;
	font-family: "Minecraft";
	color: white;
}
nav li:hover {
	background-color: #252525FF;
}
nav a {
	text-decoration: none;
}
#logo {
	height: auto;
	width: 100px;
	margin: 10px;
}

#background-img {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: blur(10px);
	object-fit: cover;
	object-position: center;
}

main {
	padding: 100px;
	overflow: hidden;
	position: relative;
	font-family: "Minecraft";
	color: white;

	display: flex;
	flex-direction: column;
	align-items: center;
}
#message {
	margin-top: 10px;
	padding: 10px;
	border-radius: 5px;
	background-color: #8887;
	border: 1px solid black;
}
#message:empty {
	display: none;
}

form#code-form {
	display: flex;
	flex-direction: row;
}
#countdown {
	color: red;
	padding: 10px;
	margin-left: 10px;
	border-radius: 5px;
	background-color: #8887;
	border: 1px solid black;
	font-size: 15px;
	font-family: "Minecraft";
}
#servers {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	margin-top: 40px;
	margin-bottom: 30px;
}
#servers > div > img {
	width: 100%;
	max-width: 450px;
}
#servers > div {
	width: 100%;
	max-width: 450px;
}
@media screen and (max-width: 500px) {
	main {
		padding: 10px;
	}
}

.copyable {
	cursor: copy;
}
code, input, button {
	font-family: "Minecraft";
}
input, button {
	outline: none;
	padding: 10px;
	border-radius: 5px;
}
input:hover, button:hover {
	background-color: #e0e0e0;
}
h1 {
	font-size: 45px;
	padding-top: 25px;
}
h2 {
	font-size: 30px;
	padding-top: 30px;
}
p, li {
	font-size: 19px;
}
a:any-link {
	color: #aeceff;
}

/*
main {
	padding: 0 100px;
	overflow: hidden;
	position: relative;
}
h1, h2, p, img {
	position: relative;
}

 */
