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;
}

.language-selection {
	display: flex;
	width: 100%;
	justify-content: end;
	margin-right: 80px;
}


.language-icon {
	width: 40px;
	cursor: pointer;
	margin-right: 32px;
}


.page-description {
	font-size: 22px;
	text-align: center;
	line-height: 44px;
	margin-bottom: 60px
}


.al-game-selection {
	display: flex;
	justify-content: space-around;
	padding: 40px 80px;
}


.al-game {
	width: 25%;
	border-radius: 32px;
	cursor: pointer;
	position: relative;
}

.al-game-image {
	width: 100%;
	border-radius: 32px;
	transition: linear 200ms;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
	top: 0;
	left: 0;
}

.al-game:hover .al-game-image {
	transform: scale(1.10);
	filter: brightness(0.45);
}

.al-game-info {
	position: absolute;
	bottom: 0px;
	left: 0px;
	opacity: 0;
	color: #fff;
	font-size: 18px;
	transition: linear 200ms;
	text-shadow: 1px 1px 2px black;
	padding: 16px 32px;
	
}


.al-game:hover .al-game-info {
	opacity: 1;
	transform: scale(1.10);
}


.footer {
	background: radial-gradient( circle, #5b423f 0%, #2c1c1d 90%);
	color: #fff;
	width: 100%;
	display: flex;
}

#footer-description {
	
	padding: 16px 80px;
}