/* Salon principal (choix du type de partie : jouer contre l'IA, creer/
   rejoindre une partie privee). Pour l'instant ce bloc (#salon_main_container)
   est encore dans le layout (views/index.html), pas dans son propre fragment
   HTML -- ce fichier est donc lie depuis le <head> du layout en attendant.
   Le composant "carte salon" partage avec l'accueil vit dans commun.css. */

#salon_main_container {
	padding-top: 3em;
}

.container {
	position: absolute;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	max-width: 1600px;
	padding-left: 5%;
	max-height: 100%;
	padding-right: 5%;
}

#salon_hello {
	text-align: center;
	width: 100%;
	color: white;
	margin: 0px;
	padding: 1em;
}

#annonce_salon_hello {
	font-size: 1.2em;
	line-height: 1.5em;
}

.salon_stats_chiffre {
	font-size: 1.2em;
	color: #7db136;
}

.salon_sous_div {
	max-width: 400px;
	width: 100%;
	order: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

button#jouer {
	background-color: #ea8b00;
}

button#jouer > big {
	font-size: 1.4em;
}

button > big {
	font-family: "Caveat";
	font-size: 2em !important;
	line-height: 95%;
}

.upperCaseInput {
	text-transform: uppercase;
}
