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


html, body {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	/* align-items: center; */
}
html {
	background-image: url(/images/panorama/panorama_1.png);
	background-size: cover;
	background-position: 100%;
}
main {
	margin: 10vh 0;
	padding: 2%;
	width: 50vw;
	height 80vh;
	background: #202020af;
	border: 5px solid black;
}

* {
	font-family: "minecraft";
}

h2 {
	color: white;
	font-size: 4em;
}

.button {
	font-size: 2.5em;
	margin: 2vh 0;
	display: inline-block;
	width: 100%;
	aspect-ratio 200 / 20;
	background-image: url(/images/button.png);
	text-align: center;
	background-size: contain;
	background-position: 50%;
	image-rendering: pixelated;
	background-repeat: no-repeat;
	color: white;
}

.button:hover {
	background-image: url(/images/button_highlighted.png)
}

.maps {
	display: flex;
	gap: 1vw;
}
.maps > * {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	background-size: cover;
	flex:1;
	aspect-ratio: 1;
	text-align: center;
}
.maps > * > p {
	margin: 0;
	color: white;
	background: #202020af;
	font-size: 2em;
}

.trackmap {
	background-image: url(/images/trains/train_1.webp);
}

.map {
	background-image: url(/images/builds/build_1.webp);
}

#title_logo {
	width: 100%;
}

@media only screen and (max-width: 1000px) {

	html, body {
		background-position: unset;
	}

	main {
		width: 80vw;
	}

	.button {
		font-size: 1.5em;
	}

	h2 {
		font-size: 2em;
	}

	.maps > * > p {
		font-size: 1em;
	}

}
