/************************************
*												*
*		TRANSPORTS.INFO PROVISOIRE		*
*			======SCREEN========			*
*												*
************************************/



/*
	Définitions communes
*/

* {
	box-sizing:border-box;
}

body {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:stretch;
	align-content:center;
	margin:0;
	padding:0;
	background-color:var(--fond-principal);
	color:var(--texte-principal);
	font-family:Parisine, sans-serif;
	height:100vh;
}

header {
	display:none;
}

footer {
	display:none;
}


/*
	Boîtes principales // TESTS
*/

main {
	position:relative;
	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	justify-content:center;
	align-items:stretch;
	align-content:space-between;
	gap:0;
	margin:2rem auto;
	padding:0;
	width:100%;
	min-height:75vh;
	border-radius:2rem;
}

.bloc {
	flex-grow:0;
	flex-shrink:0;
	flex-basis:auto;
	display:flex;
	flex-direction:column;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	align-content:center;
	margin:0;
	padding:2rem;
	font-size:2.2rem;
	font-weight:bold;
	text-align:center;
	width:40%;

	h2 {
		font-size:1.4rem;
		font-weight:normal;
	}

	img {
		width:15rem;
		height:auto;
	}

}

.bleu {
	order:1;
	background-color:var(--fond-bloc-bleu);
	color:var(--texte-bloc-bleu);
	border-top-left-radius:2rem;
	border-bottom-left-radius:2rem;

}

.blanc {
	order:2;
	background-color:var(--fond-bloc-blanc);
	color:var(--texte-bloc-blanc);
	border-top-right-radius:2rem;
	border-bottom-right-radius:2rem;

}