:root {
  --taille: 60px;
  --border: 40px;
  --bckGroundCol: rgb(53, 53, 53);
  --bckGroundSpreadCol: rgb(51, 51, 51);
  --barCol: rgb(61, 58, 58);
  --barColHover: #555555f3;
  --titreCol: rgba(91, 95, 91, 0.394);
  --titreColHover: rgb(214, 206, 133);
  --borderCol: rgb(48, 47, 43);
  --borderColHover: rgb(153, 130, 100);
  --transparent: #00000000;

  --titreFontCol: rgb(192, 226, 42);
  --titreFontSpreadCol: rgb(185, 185, 114);
  --pCol: rgb(207, 207, 198);

  font-family: "Playfair";
  font-size: 45px;
  overflow: hidden;
  overflow-y: scroll;
}

a:link {
  color: rgb(187, 186, 113);
}

/* visited link */
a:visited {
  color: rgb(102, 109, 13);
}

/* mouse over link */
a:hover {
  color: rgb(161, 190, 29);
}

/* selected link */
a:active {
  color: rgb(153, 130, 100)
}

#linkArticle:hover {
  background-color: rgba(255, 217, 0, 0.472);
}

#linkArticle.hovered {
  background-color: rgba(255, 217, 0, 0.472);
}

body {
  background-color: rgb(65, 65, 65);
}

@font-face {
  font-family: "Playfair";
  src: url("PlayfairDisplay-VariableFont_wght.ttf");
}

/* width */
::-webkit-scrollbar {
  width: 20px;
  height: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--transparent);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--barCol);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--barColHover);
}

.Wind {
  position: absolute;
  margin: 20px;
  top: 500px;
  left: 500px;
  width: var(--taille);
  height: var(--taille);
  resize: none;

  border: solid 3px var(--borderCol);
  border-style: inset;
  border-radius: 50%;

  /*background-color: var(--bckGroundCol);*/
  color: rgba(255, 255, 255, 0);

  overflow: hidden;
  background-size: 100%;

  /*transition: all 0.1s ease;*/

  box-shadow: 0 0 5px rgb(0, 0, 0);
}

.Wind:hover {
  border-color: var(--borderColHover);
}

.Wind.spread {
  width: 600px;
  height: 300px;
  resize: both;
  background: var(--bckGroundSpreadCol);
  border-width: 2px;
  min-width: 600px;
  min-height: 200px;

  border-radius: var(--border);
}

.Wind.full {
  top: 0px;
  left: 0px;
  width: 98%;
  height: 97%;
  resize: none;
  margin: 10px;
  padding: 0px;
}

.CenterTitre {
  margin: 0;
  height: 100%;
  display: flex; /* Active flexbox sur le conteneur */
  justify-content: center;
  align-items: center;
  text-align: center;
}

.Titre {
  height: 100%;
  overflow: visible;
  transition: all 0.5s ease;
  font-size: 30px;
  margin: 0px;
  border-radius: var(--border);
}

.Titre:hover {
  color: var(--titreFontCol);
  background-color: var(--titreCol);
}

.Titre.hovered {
  color: var(--titreFontCol);
  background-color: var(--titreCol);
}

.Titre.spread {
  height: auto;
  margin: 10px;
  font-size: 45px;
  background-color: var(--titreCol);
  color: var(--titreFontSpreadCol);
}

.Contenu {
  overflow-y: auto;
  transition: all 1s ease;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 50px;
  max-height: calc(100% - 80px);
}

.Contenu.hide {
  color: var(--transparent);
}

.Contenu p {
  font-size: 15px;
  text-align: justify;
  text-indent: 50px;
  max-width: 500px;
}

.Contenu.spread {
  overflow-y: scroll;
  color: var(--pCol);
}

.Contenu.spread :is(h1, h2, h3, h4, h5, h6) {
  color: var(--titreColHover);
  text-align: justify;
  text-indent: 50px;
  max-width: 500px;
  line-height: 120%;
  margin: 30px;
}

.Contenu.spread h1 {
  font-size: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
  text-align: justify;
}
.Contenu.spread h2 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.Contenu.spread h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.intro {
  top: 45%;
  left: 20px;
  position: absolute;
  transform: translateY(-50%);
  padding: 0;
}
.Wind * {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                            supported by Chrome and Opera */
}
