* {
  scroll-behavior: smooth;
}

#boutons_police {
  position: absolute;
  left: 42px;
  padding: 0;
  margin: 0;
  color: #fff;
  padding: 0;
  width: 118px;
  font-size: 25px;
  font-weight: bold;
  line-height: initial;
  --border: solid 1px white;
}


#menu-accordeon {
  position: absolute;
  left: 160px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  width: 100px;
  font-size: 13px;
  line-height: initial;
  color: #fff;

  --border: solid 1px white
}

#menu-accordeon ul {
  padding: 0;
  margin: 0;
  list-style:none;
  text-align: center;
}
#menu-accordeon li {
   background-color:#333; 
   border-radius: 6px;
   margin-bottom: 2px;
   border:solid 1px #333A40
}
#menu-accordeon li li {
   max-height: 0;
   overflow: hidden;
   transition: all .5s;
   border-radius: 0;
   background: #444;
   box-shadow: none;
   border:none;
   margin:0
}
#menu-accordeon a {
  display:block;
  text-decoration: none;
  color: #fff;
  padding: 8px 0;
  font-family: verdana;
  font-size:1.2em
}
#menu-accordeon ul li a, #menu-accordeon li:hover li a {
  font-size:1em
}
#menu-accordeon li:hover {
   background: #729EBF;
}
#menu-accordeon li li:hover {
   background: #999;
}
#menu-accordeon ul li:last-child {
   border-radius: 0 0 6px 6px;
   border:none;
}
#menu-accordeon li:hover li {
  max-height: 15em;
}

/* Menu code starts here */

#menuToggle {
  display: block;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: absolute;
  --border: 1px solid white;
  z-index: 1;
  width: 40px;
  -webkit-user-select: none;
  user-select: none;
    padding:0;
  margin:0;
}

#menuToggle a {
  text-decoration: none;
  color: #cdcdcd;;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: tomato;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/* Just a quick hamburger */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* Transform all the slices of hamburger into a crossmark. */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
}

/* But let's hide the middle one. */
#menuToggle input:checked ~ span:nth-last-child(3){
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/* The last one should go the other direction */
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/* Make this absolute positioned at the top left of the screen */
#menu {
  position: absolute;
  max-width: 350px;
  width: 100vw;
  max-height: 100vh;
  box-sizing: border-box;
  overflow-y: auto;
  background: #333;
  color: #cdcdcd;
  list-style-type: none;
  --border: 5px solid blue;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-200%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li {
  padding: 5px 0;
  line-height: initial;
  font-size: 22px;
}

#menu li label {
  cursor: pointer;
}

/* And let's slide it in from the left */
#menuToggle input:checked ~ ul {
  transform: none;
}

body {
  display: grid;
  justify-content: center;
  margin: 0;
  background-color: #333;
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  line-height: 1.5em;
}

h1 {
  font-size: 32px;
  font-weight: bold;
  line-height: initial;
  text-align: center;
}

article {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  padding: 40px 10px 40px 10px;
  margin: 50px 10px 10px 10px ;
  max-width: 340px;
  min-width: 338px;
  min-height: 600px;
  width: 100%;
  overflow: auto;
  --border: 2px solid green;
}

img {
  max-width: 200px;
 -- border: 5px solid grey;
}

nav {
  display: flex;
  width: 338px;
  height : 50px;
  background-color: #333;
  --border: 1px solid white;
  position : fixed ;
  --position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.auteur {
  font-size: 24px;
  font-weight: bold;
  line-height: initial;
  text-align: center;
  margin-bottom: 20px;
   margin-top: 20px;
  width: auto;
}

.btn {
  font-size: 25px;
  font-weight: bold;
  line-height: initial;
  padding: 0px;
  margin: 0px;
  width: 35px;
  cursor: pointer;
  background-color: #333;
  color: #cdcdcd;
  vertical-align: top;
  border: none;
  --border: 1px solid white;
}

.btn:hover {
  background-color: #cdcdcd;
  color: #333;
}

.texte {
  border-bottom: 2px solid;
  width: auto;
  padding-top: 40px;
  --border: 2px solid red;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.texte p {
  display: block;
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  text-align: justify;
  text-indent: 1em;
}

.poesie {
  border-bottom: 2px solid;
  width: auto;
  padding-top: 40px;
  --border: 2px solid red;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.poesie p {
  display: block;
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  text-align: justify;
}

.intro {
  width: auto;
  padding-top: 40px;
  --border: 2px solid red;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.intro p {
  display: block;
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  text-align: justify;
}

.image_revue {
  display: block;
  text-align: center;
  align-items: center;
  justify-content: center;
  line-height: initial;
  padding-top: 40px;
  --border: 2px solid purple;
}

.italic {
  font-style: italic;
}

.paragraphe {
  display: block;
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  text-align: justify;
  text-indent: 1em;
}

.pres_revue_a {
  font-weight: bold;
  font-size: 20px;
  line-height: initial;
}

.pres_revue_a a:hover {
  text-decoration: none;
}

.section {
  width: auto;
  display: block;
  font-size: 1.2em;
  line-height: 1.5;
  margin-top: 0.25em;
  text-align: center;
  --border: 2px solid purple;
}

.section_lien  {
  width: auto;
  display: block;
  font-size: 1.2em;
  line-height: initial;
  margin: 1em;
  text-align: center;
  --border: 2px solid purple;
}

.titre {
  font-size: 32px;
  font-weight: bold;
  line-height: initial;
  text-align: center;
  width: auto;
}

/* Barre de partage Blogger — CSS généré */
.bc-sharebar {
  position: absolute;
  left: 264px;
  margin-top:.5em;
  vertical-align:bottom;
  display:inline-block;
  font-size:0; line-height:0 !important;
}
.bc-sharebar .bc-btn {
  width:36px; height:36px;
  display:inline-block; overflow:hidden; vertical-align:bottom;

  /* 2 backgrounds : sprite (top), gradient (bottom) */
  background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiwYE0ibqsikfR9XBzzPboiUbHiIY8w0L8q7rp6aIoTrwrUAVqF4tFN4_04u0GHMTDiSAek1Vj6O59ke3aR4dpvvb33W6t-cKs18MXYlGn_MPe0nj5SGK78wFUWfsHOkj4eZaNPhOpOlIVeAcCiOrOaJruxGW05nQ1GfJRe447zUSoWzI0m6p5X0L3IaFT4/s1600/sharebar.webp), linear-gradient(to bottom, #e6e6e6, #cdcdcd);
  background-repeat:no-repeat, no-repeat;
  background-size:1116px 36px, 100% 100%;
  /* background-position du sprite mappée plus bas service par service */
  border-right:1px solid #ababab;

  transition:filter .2s, transform .1s, opacity .2s, background-color .2s, border-color .2s;
}
.bc-sharebar .bc-btn:last-child { border-right:none; }
.bc-sharebar .bc-btn { filter:grayscale(1); opacity:1; }
.bc-sharebar .bc-btn:hover { filter:none; }
.bc-sharebar .bc-bt:active { transform:scale(.92); }
.bc-sharebar .bc-btn:hover { border-right-color:#949494; }
.bc-sharebar .bc-btn .bc-label { position:absolute; left:-9999px; }
.bc-sharebar .facebook { background-position:0px 0, 0 0; }
.bc-sharebar .linkedin { background-position:-684px 0, 0 0; }
.bc-sharebar .whatsapp { background-position:-828px 0, 0 0; }