body {
	width: 100%;
	height: 100vh;
	margin: 0px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	background: #d4b89b;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


.header {
	font-size: 48px;
	font-weight: bold;
	background: radial-gradient( circle, #5b423f 0%, #2c1c1d 90%);
	width: 100%;
	color: rgb(212, 184, 155);
	display: flex;
	justify-content: center;
}


.header-pattern {
	background: radial-gradient( circle at center, #2c1c1d 15%, transparent 20%), rgba(255, 255, 255, 0);
	background-size: 40px 40px;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 10px 0px;
}


.content {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-flow: column;
}

.page-description {
	font-size: 22px;
	text-align: center;
	line-height: 44px;
}


.al-game-selection {
	display: flex;
	justify-content: space-around;
	padding: 40px 80px;
}


.al-game {
	width: 25%;
	border-radius: 32px;
	cursor: pointer;
}

.al-game-image {
	width: 100%;
	border-radius: 32px;
	transform: scale(1);
	transition: linear 200ms;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
	filter: brightness(1);
}

.al-game-image:hover {
	transform: scale(1.08);
	filter: brightness(0.65);
}


.footer {
	background: radial-gradient( circle, #5b423f 0%, #2c1c1d 90%);
	color: #fff;
	padding: 16px 80px;
}