body {
	background-color: #ededed;
}

* {
  box-sizing: inherit;
}

html {
  height: 100%;
  box-sizing: border-box;
}

body {
  height: 100%;
  font: 1.2em sans-serif;
}

.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header {
  z-index: 1;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.footer {
  padding:0px 0;
  color:#fffff;
  background-color:#3e3e3e;
}

h1 {
  font-size: 48px;
  font-family:Garamond;
  text-align:center;
}

h2 {
  font-size: 24px;
  font-family:Garamond;
}

p {
  font-size: 16px;
  font-family:Open Sans;
}

.pied-de-page {
   padding:0;
   margin:0;
   top:0;
   left:0;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.pied-de-page-contenu {
  padding: 50px;
}

.logo {
    margin-left: 20px;
}

.navbar {
    position: relative;
    display: flex;
    padding: 3px;
    backdrop-filter: blur(20px) brightness(40%);
    align-items: center;
    box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.75);
}

.navigation {
    justify-content: space-around;
}

.navigation > ul > li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 10px;
    cursor: pointer;
    font-family:Open Sans;
}

.navigation > ul > li > a {
    color: white;
    text-decoration: none;
}

.navigation > ul > li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: .1rem;
    background-color: #b5904a;
    left: 0;
    bottom: 0;
    transform-origin: 50% 50%;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.navigation > ul > li:hover::after {
    transform: scaleX(1);
}

.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.deux-flip-cards {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.flip-card {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  border-radius: 10px;
  perspective: 1000px;
}

.flip-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #b5904a;
  color: black;
}

.flip-card-back {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #b5904a;
  color: white;
  transform: rotateY(180deg);
}

.separator {
  width: 100%;
  height: 100px;
}

.no_javascript {
  display: flex;
  align-items: center;
  justify-content: center;
}