html {
    margin:0;
  padding:0;
  background: url("wallpapers/Abstract6Wallpaper (2560x1600).png") no-repeat center fixed;
  /*background: url("wallpapers/Abstract6Wallpaper (2560x1600).png") repeat center;*/
  -webkit-background-size: cover; /* pour anciens Chrome et Safari */
  background-size: cover; /* version standardisée */
  /*background: url("wallpapers/Abstract6Wallpaper (2560x1600).png") repeat center;*/
  /*-webkit-background-size: contain;*/ /* pour anciens Chrome et Safari */
  /*background-size: contain;*/ /* version standardisée */
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
    padding: 0px;
    font-family: sans-serif, Arial, "Times New Roman", Times;
}



header {
    /*border: 1px solid red;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /* Détermination fixe en pixels : l'équivalent de 63% de 1920 pixels, soit 1200px */
    /* De la sorte, en faisant un zoom dans le navigateur, la largeur du header/nav/section/footer augmente */
    /* Les navigateurs mobiles font ce zoom; ils n'afficheront pas les côté du body avec la background-image */
    /*width: 63%;*/
    width: 1200px;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: white;
}

/* Propriétés header pour mobile */
@media all and (max-width: 450px) {
    header {
    /*border: 1px solid red;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /*align-items: center;*/
    /* Détermination fixe en pixels : l'équivalent de 63% de 1920 pixels, soit 1200px */
    /* De la sorte, en faisant un zoom dans le navigateur, la largeur du header/nav/section/footer augmente */
    /* Les navigateurs mobiles font ce zoom; ils n'afficheront pas les côté du body avec la background-image */
    /*width: 63%;*/
    /*width: 450px;*/
    margin: auto;
    background-color: white;
}
}

div#header_gauche {
    padding-left: 0.5%;
}

div#header_gauche a {
    text-decoration: none;
    color: #dfaf2c;
}

/* Propriétés header_gauche pour mobile */
@media all and (max-width: 450px) {   
    div#header_gauche {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2em;
    padding-bottom: 0em;
    }
}

/* Propriétés pour image du header gauche sur les mobiles */
@media all and (max-width: 450px) {
    div#header_gauche img {
        /* Le factor de l'image est 412/64=6.4375 */
        width: 321.875px;
        height:50px;
    }
}

div#header_centre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: smaller;
}

div#header_centre a {
    text-decoration: none;
    color: #008caf;
    /*color: #303030;*/
}

div#header_centre a:hover {
    text-decoration: none;
    /*color: #008caf;*/
    color: #dfaf2c;
}

div#header_droite {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-right: 0.2%;
}

div#header_droite img {
    padding-left: 3.5px;
    padding-right: 3.5px;
}

/* Propriétés pour ne pas afficher le header droite sur mobile */
@media all and (max-width: 450px) {   
    div#header_droite {
    display: none;
    }
}

/*header h1 {
    color: #008caf;
}

header h2 {
    color: #e8c566;
}

p#header {
    font-weight: bold;
    text-align: center;
}*/

nav {
    width: 1200px;
    margin: auto;
}

.nav .menu {
    display: flex;
    flex-direction : row;
    justify-content: center;
}

.nav ul {
    margin: 0px;
    padding: 0px;
    background-color: black;
    list-style:none;
}

.nav a {
    /*border: 1px solid red;*/
    padding: 0.75em;
    display: block;
    /* Les 3 instructions ci-dessous, ajoutées par rapport à https://www.damienflandrin.fr/blog/post/tutoriel-realiser-un-menu-responsive-avec-flexbox */
    padding-left:0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
    width: 200px;
    text-align:center;
    text-decoration: none;
    font-weight: 500;
    color: white;
}

.nav a:hover {
    /* Couleur Gris anthracite */
    background-color: #303030;
    /* Couleur jaune safran */
    /*color: #414182;*/
    /* Couleur Gold */
    /*color: #ffd700;*/
    /* Couleur ocre jaune un peu plus léger site encycolorpedia */
    /*color: #e8c566;*/
    /* Ocre jaune selon http://www.colorem.net/?couleur=ocre-jaune */
    color: #dfaf2c;
    /*color: yellow;*/
}

.nav a#item_menu_courant {
    color: #dfaf2c;
}

div#section_administration {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 1200px;
    margin: auto;
    padding: 0px;
}

div#aside_section {
    /*border: 1px solid red;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 1200px;
    margin: auto;
    padding: 0px;
}

div#aside_section section#section_page_accueil {
    /*border: 1px solid red;*/
    /* Détermination fixe en pixels : l'équivalent de 63% de 1920 pixels, soit 1200px */
    /* De la sorte, en faisant un zoom dans le navigateur, la largeur du header/nav/section/footer augmente */
    /* Les navigateurs mobiles font ce zoom; ils n'afficheront pas les côté du body avec la background-image */
    /*width: 63%;*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 1200px;
    margin: auto;
    padding: 0px;
    background-color: white;
}

article.bleu_ciel_clair {
    /*border: 1px solid red;*/
    width: 1200px;
    background-color: #ebf6fa;
    color: black;
    padding: 3%;
}

article.bleu_ciel_clair_moitie {
    /*border: 1px solid red;*/
    width: 528px;
    background-color: #ebf6fa;
    color: black;
    padding: 3%;
}

article.gris_clair {
    /*border: 1px solid red;*/
    width: 1200px;
    background-color: grey;
    color: white;
    padding: 3%;
}

article.gris_clair_moitie {
    /*border: 1px solid red;*/
    width: 528px;
    background-color: grey;
    color: white;
    padding: 3%;
}

article.gris_fonce {
    /*border: 1px solid red;*/
    width: 1200px;
    /*background-color: #303030;*/
    /*background-color: #333d40;*/
    /* Taupe */
    background-color: #463f32;
    color: white;
    padding: 3%;
}

article.gris_fonce_moitie {
    /*border: 1px solid red;*/
    width: 528px;
    /*background-color: #303030;*/
    /*background-color: #333d40;*/
    /* Taupe */
    background-color: #463f32;
    color: white;
    padding: 3%;
}

article.noir {
    /*border: 1px solid red;*/
    background-color: black;
    width: 1200px;
    color: white;
    padding: 3%;
}

article.noir_moitie {
    /*border: 1px solid red;*/
    background-color: black;
    width: 528px;
    color: white;
    padding: 3%;
}

article.blanc {
    /*border: 1px solid red;*/
    background-color: white;
    width: 1200px;
    color: black;
    padding: 3%;
}

article.blanc_moitie {
    /*border: 1px solid red;*/
    background-color: white;
    width: 528px;
    color: black;
    padding: 3%;
}

article.jaune_tres_clair {
    background-color: #fffae6;;
    color: black;
    width: 1200px;
    padding: 3%;
}

article.jaune_tres_clair h1 {
    text-align: center;
}

article.jaune_tres_clair h4 {
    text-align: center;
}

article#administration {
    /*border: 1px solid red;*/
    background-color: white;
    width: 1200px;
    color: black;
    padding: 3%;
}

article#administration h4 {
    text-align: center;
}

div#authentifiez_vous {
    background-color: white;
    color: black;
    width: 1200px;
    text-align: center;
    /*padding: 3%;*/
}

div#authentification_reussie {
    background-color: #ebf6fa;
    color: black;
    width: 1200px;
    text-align: center;
}

div#authentification_reussie a {
    color: #dfaf2c;
    text-decoration: none;
}

div.authentification_echouee {
    background-color: #ebf6fa;
    color: black;
    width: 1200px;
    text-align: center;
}

div.authentification_echouee a {
    color: #dfaf2c;
    text-decoration: none;
}

div#remontrez_patte_blanche {
    background-color: #ebf6fa;
    color: black;
    width: 1200px;
    text-align: center;
}

div#remontrez_patte_blanche a {
    color: #dfaf2c;
    text-decoration: none;
    
}

div#liste_des_jeux {
    background-color: #ebf6fa;
    color: black;
    width: 1200px;
    /*text-align: center;*/
}

h3#titre_etape {
    text-align: center;
}

h2#liste_des_jeux {
    text-align: center;
}

a.ocre_jaune_non_souligne {
    /* Ocre jaune */
    color: #dfaf2c;
    text-decoration: none;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
    padding: 0px;
    font-family: sans-serif, Arial, "Times New Roman", Times;
}

div#mentions {
    text-align: center;
    width: 1200px;
    margin: auto;
    /*background-color: #463f32; /* Gris foncé*/
    background-color: black;
    color: white;
    font-size: smaller;
}

table {
    border-collapse: collapse;
}

td {
    border: 2px solid white;
    padding: 10px;
}
