/* Police */

 @font-face {
  font-family: Alegreya;
  font-display: auto;
  src:
    url("fonts/AlegreyaSans-Regular.woff2") format("woff2");
} 

html {
 font-size: 100%;
}

body {
    font-size: 1.2rem;
    background-color: #ffffff;
    font-family: 'Alegreya',  sans-serif;
    color: #333;
}

button { 
  font-family: inherit; 
  font-size: inherit; 
  border: 1px solid;
  background: none;
}

button:hover, button:focus {
  background-color: rgba(138, 197, 195, 0.5);
}

.pagination a {
  margin-right: 1em;
}

.pagination {
  margin-bottom: 1em;
}

.first {
  margin-right: 1em;
}

.etc {
  margin-right: 1em;
}

ul {
list-style-type: none;
padding: 0;
}

.post-content ul {
   list-style-type: initial;
   padding: revert;
}

.simple-menu li, .post-info-co li, .post-tags-list li, .syndicate ul li, .pagination li {
    display: inline-block;
    margin-right: 1.25rem;
}

blockquote {
  background: rgba(138, 197, 195, 0.1);
  border-left: 10px solid rgba(138, 197, 195, 0.3);
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}

a {
 color: inherit;
 text-decoration-color: #696969;
}

a:hover, a:focus {
  background-color: rgba(138, 197, 195, 0.5);
  text-decoration: none;
}

::selection {
  background-color: rgba(138, 197, 195, 0.5);
}

.sidebar a, .simple-menu a, .post-title a, .backlink {
  text-decoration: none;
}

.backlink:hover, .backlink:focus {
 color: rgb(138, 197, 195);
 background-color: white;
}

h1 {
color : black;
}

hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Formulaires */

.search-form-input {
  border:none;
  background:none;
}

textarea {
  border: 1px solid rgb(105, 105, 105);
  min-height: 10em;
  width: 66%;
}

label {
    display: block;
}

.remember label {
    display: inline;
}

/* Typography */

:lang(en) > q {quotes: '“' '”' '‘' '’';}
:lang(fr) > q {quotes: '« ' ' »' '“' '”';}

/* Layout */

#page {
    margin: auto;
    width: 95%;
}

@media (min-width: 53.125em) {

.header {
    grid-area: header;
    display: grid;
    grid-template-columns: 3fr 1fr;
}

.banner {
    grid-column: 1/1;
    grid-row: 1/2;
}

.search-form {
    grid-column: 2/2;
}

.header nav{
       grid-row: 2/2;
    }

.skip-links {
    grid-column: 2/2;
}


.footer {
    grid-area: footer;
}

#wrapper {
    grid-area: wrapper;
    display: grid;
    grid-template-columns: 3fr 1fr;
}

#main {
    max-width: 80%;
}

#page {
    max-width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "header header"
    "wrapper wrapper"
    "footer ."
}