/*STRUCTURE DU SITE*/

  * {
    box-sizing: border-box;
  }

  body {
    background-color: #787569;
    font-family: Georgia;
    margin: 0;
  }

 header {
    padding: 20px;

  }

header, nav, main, footer {
  background-color:  #EFEFEF;
  width: 60%;
  margin: auto;
}

nav, footer {
    padding: 10px;
    text-align: center;
    border: 0px;
}


main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*margin-top: 10px;
    margin-bottom: 10px;*/
  }

article, aside {
  flex-basis: 100%;
  padding: 20px;  
}


/*STYLE ÉCRITURE */

p { 
  margin-bottom:0; 
  margin-top:.75em; 
  font-size: 1.1em;
  text-align: justify;
  line-height: 1.5em;
}

.left { 
  margin-bottom:0; 
  margin-top:.75em; 
  
  font-size: 1em;
  text-align: left;
  line-height: 1.2em;
}
.right { 
  margin-bottom:0; 
  margin-top:.75em; 
  font-size: 1.1em;
  text-align: right;
  line-height: 1.2em;
}

.center { 
  margin-bottom: 0; 
  margin-top:.75em; 
  font-size: 1.1em;
  text-align: center;
  line-height: 1.2em;
}

.ligne {  
  
  font-size: 0.9em; 
  text-indent: 0em;
  color: #666;  
  margin-top: 0pt; 
}

h1   { 
  font-size: 1.8em;
  color: #154360;
  text-align: center; 
}

h2 {    
  font-size: 1.3em;
  text-align: left;
  color: #052277;
}

h3 {  
  font-size: 1.2em;
  text-align: left;
  margin-top: 1em;
  color: #154360;
}

h4 {    
  font-weight: bold; 
  line-height: 1em;
  font-size: 1.1em;
  color: #000066;
  margin-bottom: 0.2em }

ul {
  list-style-position: outside;
}

li {  
    margin-bottom: 0em; 
    margin-top:.75em; 
    font-size: 1em;
    text-align: 0em;
    line-height: 1.1em;}

  .nav {
    display: inline;
    list-style-type: none; 
    margin: 10px;
    margin-bottom: 0; 
    margin-top:.25em; 
    font-size: 0.9em;
    line-height: 1em;
  }

a { text-decoration: none; }
a:link {color: #4682B4; font-weight: bold;}/* lien non-visité */
a:visited {color: #000066;} /* lien visité */
a:hover { color: #800000} /* lien survolé */
a:active { color: green;} /* lien activé */


  blockquote {
    display: block;
    font-size; 0.9em; 
    line-height: 1.1em;
    text-align: justify 
  }

 img {
    width:100%;
    max-width:300px;
}

figcaption {
  text-align: center
  }

.mini 
{
    width:50%;
    max-width:100px;
}

.large
{
    width:100%;
    max-width:500px;
}


.column {
      float: left;
      width: 50%;
      padding: 10px;
      box-sizing: border-box;
    }
    .clearfix::after {
      content: "";
      clear: both;
      display: table;
    }

/*#col {
  column-count: 2;
}*/


/* ADAPTÉ À TOUS LES TAILLES D'ÉCRAN */

@media screen and (max-width: 800px){
  header, nav, main, footer {
   width: 100%;
   margin: auto;
 }
}

@media screen and (max-width: 500px){
  header, nav, main, footer {
   width: 100%;
   margin: auto;
 }
 #main {
    display: flex;
    flex-basis: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #FBFCFC;
 }
 article, aside {
  flex-basis:100%;
  padding: 10px;
 }
}