* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style-type: none;
	color: #000;
}

body {
	overflow: hidden;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Mate SC', serif;
	font-size: 30px;
	background-image: url("/_game/vahal/accueil/images/ville.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
}
body::before {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(0px);
	z-index: -1;
	animation-name: darker;
	animation-duration: 3s;
	animation-fill-mode: forwards;
}

.logo {
	height: 200px;
	background-image: url("images/edenya.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	margin-bottom: 25px;
	opacity: 0;
	animation-name: fade-appearance;
	animation-delay: .4s;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

.accroche {
	width: 460px;
	text-align: center;
	margin-bottom: 45px;
	opacity: 0;
	animation-name: down-appearance;
	animation-duration: 3s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
}

.choices {
	width: 100%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
}
.choices__item {
	cursor: pointer;
	position: relative;
	opacity: 0;
	animation-name: fade;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}
.choices__item::before {
	content: " ";
	position: absolute;
	top: 50%;
	left: 0;
	height: 75px;
	width: 100%;
	transform: translateY(-50%);
	opacity: 0;
	background-image: url("https://cdn.discordapp.com/attachments/447782720169443329/745256938027090020/picto.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: .3s all ease-in;
	z-index: -1;
}
.choices__item::after {
	content: " ";
	position: absolute;
	top: 50%;
	left: calc(100% + 10px);
	height: 15px;
	width: 25px;
	transform: translateY(-50%);
	background-image: url("https://image.flaticon.com/icons/svg/32/32213.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: .3s all linear;
}
.choices__item:hover::before {
	opacity: .3;
}
.choices__item:hover::after {
	transform: translate(10px, -50%);
}
.choices__item--1 {
	animation-delay: 1.5s;
}
.choices__item--2 {
	animation-delay: 1.7s;
}
.choices__link {
	display: block;
	height: 100%;
	width: 100%;
}

.footer {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 14px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
}

.infos {
	width: 100%;
	width: 460px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.infos__items {
	position: relative;
}
.infos__logo {
	display: inline-block;
	background-image: url("https://cdn.discordapp.com/attachments/447782720169443329/745256934277382164/logo.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	position: absolute;
	top: 2px;
	right: 100%;
}
.infos__link {
	cursor: pointer;
	position: relative;
}
.infos__link::before {
	content: " ";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
	height: 2px;
	width: 35%;
	background-color: black;
	transition: .3s all ease-in;
}
.infos__link:hover::before {
	width: 100%;
}

@keyframes down-appearance {
	0% {
		transform: translateY(-15px) rotateY(10deg);
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes fade-appearance {
	0% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes fade {
	100% {
		opacity: 1;
	}
}
@keyframes darker {
	100% {
		backdrop-filter: blur(5px);
	}
}
