body {
	color: black;
	background-color: black;
	background-image: url(./fond-ecran/fond-1000.jpg);
	margin: 0;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
}
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
footer {
	color: white;
}
.menu {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: white;
	padding-left: 10px;
}
.cadre-logo {
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 200px;
	width: 300px;
	background: radial-gradient(white 70px, black 150px);
}
.logo {
	opacity: 0; /* Monte à 1 par animation */
}
.titre {
	color: white;
	text-align: center;
}
.icone {
	padding: 40px
}
.formulaire /* Formulaire de saisie */ {
  text-align: center;
  color: white;
  margin: 50px;
}
.saisie /* Ligne de saisie comprenant le libellé et la zone de saisie */ {
  display: flex;
  justify-content: space-between;
  width: 300px;
  align-items: center;
  padding-bottom: 10px;
}
.saisie input /* Zone de saisie */ {
  width: 150px;
  height: 15px;
  margin-left: 5px;
  background-color: #CCCCCC;
}
.bouton-menu /* Style des boutons clickables */ {
  box-shadow: 3px 3px 3px black;
  padding: 5px;
  margin: 5px;
}
.pupitre-trombi {
}
.pupitre-trombi h3 { /* Nom des pupitres */
  text-align: center;
  color: white;
}
.rang-photo-trombi { /* Rangée de photos dans le trombinoscope */
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.photo-trombi { /* Photo du trombinoscope avec sa légende */
  display: flex;
  flex-direction: column;
  background-color: black;
  border-color: red;
  border-width: 2px;
  border-style: solid;
  padding: 5px;
  margin: 5px;
  text-align: center;
  font-size: small;
  color: white;
}
table /* Bordure des tableaux */
{
  border-collapse: collapse;
  margin: 10px;
}
td, th /* Cellules des tableaux */
{
  border: 1px solid white;
  padding: 3px;
  text-align: center;
  font-size: small;
  color: white;
}
.bloc-admin-pwd {
	display: flex;
  flex-direction: row;
  justify-content: flex-start;	
}
.accueil {
	display: flex;
	flex-direction: row;
  justify-content: flex-start;
	align-items: center;
}
.affiche-accueil {
	display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
  padding-left: 10px;
}