body {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: var(--background-image);
	/* background: url('background/000.jpg'); */
	background-size: cover;
	background-position: center;
	transition: background 1s;
	text-align: center;
	font-family: Space Grotesk, sans-serif;
}

.header {
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(3px);
	padding-top: 20px;
	padding-bottom: 20px;
	width: 100%;
}

.header_spacer {
	height: 8em;
}

.title {
	font-size: 2.5em;
	font-weight: bold;
	color: rgb(20, 20, 20);
	/* text-shadow: 8px 8px 8px white, -8px 8px 8px white, 8px -8px 8px white, -4px -4px 8px white; */
	/* text-shadow: 1px 1px BlanchedAlmond, -1px 1px BlanchedAlmond, 1px -1px BlanchedAlmond, -1px -1px BlanchedAlmond;  */
	-webkit-text-stroke: 1.5px BlanchedAlmond;
	paint-order: stroke fill;
	margin-bottom: 0.5em;
}

.subtitle {
	font-size: 2em;
	color: black;
	font-weight: bold;
	-webkit-text-stroke: 1.5px BlanchedAlmond;
	paint-order: stroke fill;
	margin-bottom: 0em;
}

.container {
	text-align: center;
	align-items: center;
	align: center;
	display: grid;
	gap: 5vw;
	justify-items: center;
}

.btn {
	width: 20vw;
	height: 20vw;
	font-size: calc(1em + 1vmin);
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	border: 0px;
	cursor: pointer;
	transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
	backdrop-filter: blur(3px);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
	word-wrap: break-word;
	min-width: 140px;
	min-height: 140px;
	max-width: 200px;
	max-height: 200px;
	grid-column: span 2;
	box-shadow: 0px 0px 4px 4px rgba(40, 40, 40, 0.1);
}

.btn a {
	text-decoration: none;
	color: inherit;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn:hover {
	background-color: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(5px);
	border-color: rgba(0, 0, 0, 0.5);
}

.footer {
	margin-top: auto;
}

.footer_box {
	width: 100px;
	height: 100px;
	position: fixed;
	bottom: 0%;
	right: 0%;
	align-content: center;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 8px;
}

@media (orientation: landscape) {
	.container {
		grid-template-columns: repeat(8, 1fr);
	}
	.btn:nth-child(5) { grid-column: 2 / span 2; }
	.btn:nth-child(6) { grid-column: 4 / span 2; }
	.btn:nth-child(7) { grid-column: 6 / span 2; }
}

@media (orientation: portrait) {
	.container {
		grid-template-columns: repeat(4, 1fr);
		gap: 8vmax;
	}
	
	.btn:nth-child(7) { grid-column: 2 / span 2; }
	
	body {
		background: var(--background-image-v);
		background-size: cover;
		background-position: center;
		justify-content: unset;
	}

	.header {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.title {
		font-size: 1.8em;
		margin-bottom: 0.3em;
	}

	.subtitle {
		font-size: 1.4em;
		margin-bottom: 0.2em;
	}

	.header_spacer {
		font-size: 3em;
		height: 2em;
		padding-bottom: 0px;
	}
	
	.container {
		transform: scale(0.7);
		transform-origin: top;
	}
	
	.footer_box {
		transform: scale(0.7);
		transform-origin: bottom right;
	}
	

}
