body {
  background-color:#F0F5F2;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;    
  font-size:14pt;
  line-height: 1.5;
  text-align: justify;
}
a {
    text-decoration:none;
}
a.chemin,a.chemin:visited {
    color:blue;
}
.flexbox-container {
  display: flex;
  justify-content: flex-start;  
  margin-left:100px;
  margin-right:100px;
  margin-top:30px;
}
section {
  background-color:white;
  padding:20px;
  margin-left:100px;
  margin-right:100px;
  border-radius:20px;
}
section {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(26,111,196,0.16);
}
.comfortaa {
  font-family: "Comfortaa", sans-serif;
  font-weight: bold;
}
@font-face {
    font-family: "SecondChance";
    src: url("SecondChanceSketch.ttf");
}
@font-face {
    font-family: "Baskerville";
    src: url("LibreBaskerville-VariableFont_wght.ttf");
}
@font-face {
    font-family: "Inter";
    src: url("Inter.ttf");
}
h1 {
  color:firebrick;
  text-align:center;
  font-size:40pt;
  font-family: "SecondChance";
  font-weight: bold;
  margin-left:30pt;
}
h2 {
  font-family: "Comfortaa", sans-serif;
  font-size:20pt;
  color:firebrick;
}
summary {
  color:blue;
  padding-left: 2em;
  font-size:18pt;
  font-family:Inter;
}
p.notions {
  color:#303030;
  font-family:courier;
  font-size:12pt;
  text-align:right;
  margin-right: 100px;
}
p {
  text-indent:2em;
  font-size:13pt;
  text-align:justify;
}
blockquote {
  border-left: 4px solid firebrick;
  margin: 5px 50px 5px 50px;
  padding: 8px 16px;
  color: #555;
  background-color: #f9f9f9;
}
.encadre {
  border-left: 4px solid #6aab72;
  background: #eef6ff;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin: 5px 50px 5px 50px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .flexbox-container {
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }
  .flexbox-container div img {
    float: none;
    width: 100% !important;
    max-width: 300px;
  }
  h1 {
    font-size: 24pt;
    padding-left: 0;
  }
  section {
    margin-left: 10px;
    margin-right: 10px;
  }
  h2 {
    font-size: 16pt;
  }
  summary {
    font-size: 14pt;
  }
  p {
    font-size: 13pt;
  }
  p.notions {
    margin-right: 10px;
  }
  blockquote {
    margin: 5px 10px 5px 10px;
  }
  .encadre {
    margin: 5px 10px 5px 10px;
  }
}