:root {
  --vert-nuit: #0f3728;
  --vert-tendre: #bedcb4;
  --violet-profond: #46003c;
  --lavande: #d7afdc;
  --framboise: #a0003c;
  --peche: #ffd2be;
  --light: #dfeeda;
}

body {
  font-family: "Sofia Sans", sans-serif;
  font-size: 12pt;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--light);
  color:var(--vert-nuit)
}

.TODO {
  background-color:lightgoldenrodyellow
}

header {
  position: fixed; top:0; left:0 ; width:100%; padding:50px; float:left;
  box-sizing:border-box
}

a {
  color:#a0003c
}

footer a {
  text-decoration: none;
  color: #fff
}

h1, h2 {
  font-family: "Sofia Sans Extra Condensed";
  text-transform: uppercase;
  font-weight: 900;
}

h3 {
  font-family: "Sofia Sans";
  font-weight: 700;
  font-size:12pt;
  padding-top: 5px;
}

main {
  padding:100px;
  max-width: 720px;
  margin:auto;
}

main h1 {
    font-size:36px;
    text-align: center;
    margin-bottom:50px;
  }

ul, li{
  line-height: 150%;
}

main p {
  line-height: 150%;
  text-align: justify;
}

hr {
  border: 0;
  height: 1px;
  background:  var(--vert-nuit);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 500px;
}


footer { display:flex; justify-content: flex-end; gap:40px; }

.bg-dark { background-color:#0f3728 ;}
.q-p-xl-md { padding: 20px 50px}
.text-white { color: #fff }
.text-right { text-align: right }

@media (max-width: 1023px) {
  header {
    position: absolute;
  }
}

@media (max-width: 600px) {
  main {
    padding: 50px 25px;
  }
  header {
    padding:20px;
  }
  header img {
    width:40px;
  }
  footer {
    gap: 10px;
    font-size:13px;
    justify-content: center;
  }
  .q-p-xl-md {
    padding: 20px 10px
  }
}
