html {
    test:ok;
  height: 100%;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --couleur-principale: darkgreen;
}

body {
  height: 100%;
  margin: 0;
}

.interface {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.interface > * {
  padding: 1em;
}
.interface > header, .interface > footer {
  background-color: var(--couleur-principale);
  color: #ffffff;
}
.interface > header h1 {
  margin: 0;
}
.interface > footer p {
  margin: 0;
}
.interface > .body {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

table.produits {
  border-collapse: collapse;
  border: 3px solid black;
}
table.produits thead, table.produits tfoot {
  background-color: #000000;
  color: #ffffff;
}
table.produits th, table.produits td {
  border: 1px solid black;
}

.body {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-gap: 1em;
}

section.instructions {
  background-color: #f0f8f0;
  padding: 1em;
}
section.instructions h1, section.instructions h2 {
  margin: 0;
}

section.instructions {
  font-size: smaller;
  line-height: 1;
}
section.instructions ul {
  padding-left: 1em;
}
section.instructions li {
  margin: 0.5em 0;
}

a.btn, button {
  background-color: var(--couleur-principale);
  border-radius: 0.25em;
  padding: 0.5em 1em;
  display: inline-block;
  color: white;
  text-decoration: none;
  margin: 0.25em 0;
  font-weight: bold;
  border: none;
  font-size: inherit;
  vertical-align: middle;
  line-height: 1;
}

section.photo-liste {
  border: 1px solid black;
  padding: 1em;
  margin-top: 1em;
}
section.photo-liste h1, section.photo-liste h2 {
  margin: 0;
}
section.photo-liste .photos {
  display: grid;
  grid-template-columns: repeat(3, 232px);
  grid-gap: 1em;
}
section.photo-liste .photo {
  display: grid;
  grid-template-rows: 200px auto;
  border: 1px solid black;
  border-radius: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
section.photo-liste form {
  background-color: #f0f8f0;
  padding: 1em;
  margin-top: 1em;
}

div.infos .label {
  font-weight: bold;
}
/*# sourceMappingURL=style.css.map */