@media all and (orientation: portrait){
	
	body
	{
		background-color: rgb(0,0,0);
		background-image: url("../images/fond-espace.jpg");
		background-attachment: fixed; /*Le fond restera fixe
		/*margin-top: 150px;  Add a bottom margin to avoid content overlay */
	}
}

@media all and (orientation: landscape){
	
	body
	{
		background-color: rgb(0,0,0);
		background-image: url("../images/fond-espace.jpg");
		background-attachment: fixed; /* Le fond restera fixe*/
		/*margin-top: 150px; /* Add a bottom margin to avoid content overlay */
	}
}

@font-face {
    font-family: 'poppinsextralight';
    src: url('../fonts/poppins-extralight-webfont.eot');
    src: url('../fonts/poppins-extralight-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/poppins-extralight-webfont.woff2') format('woff2'),
         url('../fonts/poppins-extralight-webfont.woff') format('woff'),
         url('../fonts/poppins-extralight-webfont.ttf') format('truetype'),
         url('../fonts/poppins-extralight-webfont.svg#poppinsextralight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ethnocentricregular';
    src: url('../fonts/ethnocentric_rg-webfont.eot');
    src: url('../fonts/ethnocentric_rg-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ethnocentric_rg-webfont.woff2') format('woff2'),
         url('../fonts/ethnocentric_rg-webfont.woff') format('woff'),
         url('../fonts/ethnocentric_rg-webfont.ttf') format('truetype'),
         url('../fonts/ethnocentric_rg-webfont.svg#ethnocentricregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

#flottante
{
	float: right;
}

#logoflottant
{
	float: left;
}

#conteneur
{
    display: flex;
    flex-wrap: wrap;
}

.boite
{
	max-width: 400px;
	margin: 2px;
	padding: 2px;
	border: 1px rgb(150,255,255) solid;
	border-radius: 10px;
	background-color: black;
	opacity: 0.75;
	/*box-shadow: 6px 6px 0px black;*/
}

.image
{
	max-width: 390px;
}

h1
{
	font-family: 'ethnocentricregular',Verdana, "Trebuchet MS", sans-serif;
	font-weight: bold;
	color: rgb(255,255,255);
	/*text-align: center;*/
}

p
{
	font-family: 'ethnocentricregular',Verdana, "Trebuchet MS", sans-serif;
	/*font-weight: bold;*/
	color: rgb(255,255,255);
	/*text-align: center;*/
}

.reponse
{
	color: rgb(255,0,255);
	font-weight: bold;
}

input[type=submit],input[type=text],input[type=password],input[type=email]
{
	font-family: 'courier',Verdana, "Trebuchet MS", sans-serif;
	font-size:1.4em;
	/*font-weight: bold;*/
	text-align: center;
}

textarea
{
	font-size:1.2em;
}

h2
{
	font-family: 'ethnocentricregular',Verdana, "Trebuchet MS", sans-serif;
	font-size:1.4em;
	color: rgb(255,255,255);
	/*text-align: center;*/
	/*transition:all .4s ease;*/
}

.erreur
{
	font-family: 'courier',Verdana, "Trebuchet MS", sans-serif;
	font-size:1.4em;
	color: rgb(0,0,0);
	background-color:rgb(255,0,0);
	/*text-align: center;*/
	/*transition:all .4s ease;*/
}

.effacer
{
	font-family: 'courier',Verdana, "Trebuchet MS", sans-serif;
	font-size:1em;
	color: rgb(255,0,0);
	background-color:rgb(200,200,200);
	font-weight: bold;
	/*transition:all .4s ease;*/
}

.repondre
{
	font-family: 'ethnocentricregular',Verdana, "Trebuchet MS", sans-serif;
	font-size:1em;
	color: rgb(255,0,255);
	background-color:rgb(200,200,200);
	font-weight: bold;
	/*transition:all .4s ease;*/
}

.info
{
	font-family: 'courier',Verdana, "Trebuchet MS", sans-serif;
	font-size:1.4em;
	color: rgb(0,0,0);
	background-color:rgb(0,255,0);
	/*text-align: center;*/
	/*transition:all .4s ease;*/
}

select
{
	font-family: 'ethnocentricregular',Verdana, "Trebuchet MS", sans-serif;
	font-size:1.4em;
	text-align: center;
	color: black;
	/*transition:all .4s ease;*/
}

a
{
	font-family: 'ethnocentricregular',Verdana, "Trebuchet MS", sans-serif;
	color: rgb(0,0,0);
	text-align: center;
	/*font-size:1.3em;*/
	transition:all .4s ease;
}

a:hover
{
	color:rgb(255,0,0);
	background-color:rgb(255,255,255);
	/*font-size:1.35em;*/
	transition:all .4s ease;
}

.btnPopup
{
	font-family: 'ethnocentricregular',Verdana, "Trebuchet MS", sans-serif;
	background-color: rgb(192, 192, 192);
	padding: 1px 1px;
	cursor: pointer;
}

.btnPopup:hover
{
	background-color: rgb(128,255,128);
}

.overlay
{
	position: fixed;
	left: 0px;
	top:0px;
	background-color: rgba(0,0 ,0 , 0.5);
	width: 100%;
	height: 100%;
	z-index:1;
	display:none;
}

.popup
{
	margin: 10% auto;
	width : 70%;
	background-color: rgb(50, 50, 50);
	padding: 1em;
	box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
	border-radius: 5px;
}

.btnClose
{
	float: right;
	font-size:16pt;
	cursor: pointer;
	color: rgb(128,255,128);
}

.boiteacode
{
    display: flex;
	flex-direction: column;
    justify-content: space-around;
	border-radius: 10px;
	padding: 5px;
	margin: auto;
	width : 500px;
	height: 200px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}