*{
	font-family: Poppins;
	color: white;
}
body {
	background-color:blueviolet;
	margin: 0;
}

#maze{	
}
nav{
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
	background-color: indigo;
	border-radius: 10px;
	margin-top: 0px;
	align-items:center ;
}

.ligne{
	justify-content: center;
	display:flex;
	flex-direction: row;
}
.salle{
	border: solid black 1px;
	height: 100px;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn_color{
	border: solid black 0.5px;
	background-color: black;
	color:white;
	border-radius: 5px;
	transition-duration: 0.4s;
	display: flex;
}
.btn_color:hover{
	color: blueviolet;
	transform: scale(1.1,1.1);
}

.back{
	transition-duration: 0.4s;
	background-color: rgb(179, 255, 0);
	border-radius: 7px;
	padding: 3px;
	margin: 20px;
	text-decoration: none;
	color:midnightblue;
}
.back:hover{
	transform:scale(1.1,1.1);
	background-color: rgb(121, 173, 0);
}
.btn_nav{
	padding-bottom: 0px;
	background-color: black;
	color: white;
	transition-duration: 0.4s;
	border-radius: 10px;
	padding: 2px 3px;
	margin: 20px;
}
.btn_nav:hover{
	color: blueviolet;
}
.desc_big{
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	align-self: center;
	flex-direction: row;
}
#desc{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
	/* width: 500px; */
}



#desc text{
	border-radius: 8px;
	background-color: rgba(0, 0, 0, 0.185);
	margin:5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5px;
}