*{
    box-sizing: border-box;
  }
  html{
    font-size: 62.5% !important;
  }
  
  body{
    /* font-size: 62.5% !important; */
    font-size: 3rem;
    line-height: 1.4;
    margin: auto;
    color: #0A0A0A;
    background-color: #F7F7F7;
    text-align: center;
  }
  h1{
    font-size: 6rem;
    /* padding-top: 15%;
    padding-left: 45%; */
    color: #B28530;
  }

  h2{
    font-size: 5.5rem;
    /* padding-bottom: 5% */
  }

  h3{
    font-size: 5rem;
    /* padding-bottom: 2%; */
  }
  h4{
    font-size: 4rem;
    /* padding-bottom: 2%; */

  }
  h5{
    font-size: 3rem;
  }

  a,#a{
    font-size: 3rem;
    color: #000;
    text-decoration: none;
  }
  a:hover,#a:hover,li:hover{
    text-decoration: none;
    cursor: pointer;
    color: #00C2CB;
  }
/* mise en page index */
header{
  display: grid;
  grid-template-columns: repeat(3,1fr);

}
header img{
  width: 20% !important;
}
#title{
  color: #D85C66;
}
span>h1,span>h2{
  margin: 0;
}



/* Mise en page home */

p{
  font-size: 3.5rem;
}
  /* Mise en place de la navigation */

  nav>ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    
  }
 
  /* mise en page contact */

  form,input,select,.infocontact,textarea{
    /* text-align: left; */
    font-size: 2rem;
    }
    input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button { 
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      margin: 0; 
  }

  input[type=radio]{
    margin-left: 2%;
    margin-right: .25%;
  }
  input[type=Checkbox]{
    margin-right: 2%;
  }
  form>label,form>input{
    margin-top: 1%;
  }

  /* Mise en page Tarif */
  .Tarif{
    width: 25%;
  }
  /* Mise en page Galerie photo */
  .ContPhoto{
    display: grid;
    grid-template-columns: repeat(6,2fr);
    align-items: center;
  }
 figure{
  margin: 0.5em;
  padding: 0.5em;
  border: thin silver solid;
  display: flex;
  flex-flow: column;
 }
  figure>img{
    width: 100%;
    max-height: 80%;
    

  }
  figure>figcaption{
    opacity: .5;
    background-color: rgb(20, 20, 20);
    color: #5CE1E6;
    font-size: 2.5rem;
  }