:root {
	touch-action: pan-x pan-y;
	height: 100%;
}
/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
	display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
* {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

body {
	margin: 0;
}
.container {
	position: fixed;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: none;
}
.container > .layer {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

#title {
	position: absolute;
	top: 20%;
	left: 0;
	right: 0;
	color: #fff;
	text-align: center;
	font-family: "Lato", sans-serif;
	font-size: 2.5rem;
	font-weight: 300px;
	letter-spacing: 10px;
	margin-top: -60px;
	padding-left: 10px;
	background: -webkit-linear-gradient(white, #38495a);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

#moon {
	background-image: url(./src/h/moon.png);
}
#flag {
	background-image: url(./src/h/flag.png);
}
#bg {
	background-image: url(./src/h/bg.png);
}
@media (max-aspect-ratio: 1/1) {
	#moon {
		background-image: url(./src/v/moon.png);
	}
	#flag {
		background-image: url(./src/v/flag.png);
	}
	#bg {
		background-image: url(./src/v/bg.png);
	}
	#title {
		font-size: 1.5rem;
	}
}
