@font-face {
  font-family: "Playfair Display";
  src: url("../fnt/subset-PlayfairDisplay-Regular.woff2") format("woff2"), url("../fnt/subset-PlayfairDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fnt/subset-Nunito-Regular.woff2") format("woff2"), url("../fnt/subset-Nunito-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  height: 100%;
}

body {
  font-family: "Nunito";
  background-color: #f8e9d9;
  height: 100%;
}

#grille {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 500px 1fr;
  grid-template-areas: "gauche centre droite";
}

#gauche {
  grid-area: gauche;
  padding-top: 50px;
  text-align: center;
}
#gauche p {
  color: #666;
  margin-top: 1rem;
  font-size: 0.8rem;
}

#centre {
  grid-area: centre;
  padding-top: 50px;
}
#centre #splash {
  height: 100%;
  padding-bottom: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: justify;
}
#centre #splash img {
  display: block;
  width: 100px;
}
#centre #splash h1, #centre #splash h2 {
  text-align: center;
}
#centre #portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 200px;
  text-align: justify;
}
#centre #portrait img {
  display: block;
}
#centre #portrait p {
  width: 100%;
}
#centre #portrait p#coord {
  text-align: center;
}
#centre #rubrique {
  padding-top: 30px;
  padding-bottom: 200px;
  text-align: justify;
}
#centre #rubrique img {
  display: block;
}
#centre #rubrique p {
  width: 100%;
}
#centre a {
  text-decoration: underline;
}
#centre a[target=_blank] {
  background: transparent url("../img/ext.png") center right no-repeat;
  background-size: 16px;
  padding-right: 16px;
}

#droite {
  grid-area: droite;
  text-align: right;
  color: #666;
  padding-top: 50px;
  padding-right: 50px;
}

#bas {
  position: fixed;
  margin: 0 auto;
  width: 100%;
  height: 60px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  background-color: #f8e9d9;
  border-top: 1px solid black;
}
#bas a {
  padding: 0 20px;
  width: 200px;
  text-align: center;
}
#bas a.sel {
  font-weight: bold;
  text-shadow: 0px 0px black;
}

#cache1, #cache2 {
  position: fixed;
  width: 5%;
  border-top: solid 1px #f8e9d9;
  height: 60px;
  bottom: 0px;
}

#cache1 {
  left: 0px;
}

#cache2 {
  right: 0px;
}

h1, h2 {
  font-family: "Playfair Display";
  text-align: left;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.3rem;
}

.griffe {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
}
.griffe h1, .griffe h2 {
  margin-bottom: -6px;
}
.griffe h2 {
  display: flex;
  justify-content: space-between;
}
.griffe.fixe {
  position: -webkit-sticky;
  position: sticky;
}

strong {
  font-weight: bold;
  font-size: 1.2rem;
}

em {
  font-style: italic;
}

p {
  margin-bottom: 1.5rem;
}
p:last-of-type {
  margin-bottom: 0;
}

hr {
  border-bottom: 1px solid black;
  margin: 1.5rem 0;
}

@media (max-width: 1050px) {
  #grille {
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr 200px;
    grid-template-areas: "gauche" "centre" "droite";
  }
  #gauche, #droite {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  #centre {
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
  }
  #centre #portrait, #centre #rubrique {
    padding-top: 0;
    padding-bottom: 0;
  }
  #droite {
    padding-bottom: 240px;
  }
  #bas {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 0px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    height: 60px;
    font-size: 0.8em;
  }
  #bas a {
    padding: 0;
    width: initial;
    height: initial;
  }
  .griffe.fixe {
    position: static;
  }
}/*# sourceMappingURL=base.css.map */