body { 
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
}
body::-webkit-scrollbar {
  width: 15px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #804d00; /* color of the tracking area */
  border: 2px #aaaaaa;
}

body::-webkit-scrollbar-thumb {
  background-color: #008000; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid #aaaaaa; /* creates padding around scroll thumb */
}

a.lien_vert,
a.lien_vert:visited,
a.lien_vert:hover,
a.lien_vert:active {
    text-decoration: none;
    color: #008000;
}

a.lien_marron,
a.lien_marron:visited,
a.lien_marron:hover,
a.lien_marron:active {
    text-decoration: none;
    color: #804d00;
}

.content {
  display: flex;
  flex-direction: column;
  background-color: #804d00;
  color: #000000;
  font-family: Verdana;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
    
  }
  
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


h1 {
    margin-top: 2%;
    font-family: Verdana;
    text-align: center;
    color: #008000;
    font-size: 5vw;
    font-weight: bold;
}

h2 {
    text-align: center;
    color: #008000;
    font-size: 1vw;
    font-weight: bold;
}

.rectangle_presentation {
    width: 95%;
    background-color: #008000;
    border: 2px solid #aaaaaa;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texte_presentation {
    text-align: center;
    font-weight: 600;
    line-height: 1.5vw;
    margin: 1%;
    padding: 0.5vw;
}

.encadrement {
  border: 0.2vw solid #aaaaaa;
  border-radius: 0.5vw;
}

#lightbox-img {
  border: 0.2vw solid #aaaaaa;
  border-radius: 0.5vw;
}

.image-clickable {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.image-clickable:hover {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

.legende {
    text-decoration: underline #008000;
}

.footer {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 7vh;
    max-height: 7vh;
    background-color: #008000;
    padding-top: 0.5vh;
    padding-bottom: 0.5vh;
    font-family: Verdana;
}


.reseaux {
    
    display: flex;
    align-items: center;
    padding-left: 1vw;
}

.reseaux :hover {
  transform: scale(1.05);
}

.tous_droits_reserves {
    
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    text-align: center;
    flex: 1;
    white-space: nowrap;
}

.webpage_last_update {
    
    display: flex;
    margin-left: auto;
    align-items: center;
    padding-right: 1vw;
}

.rectangle_changelog_presentation {
    
    background-color: #008000;
    border: 2px solid #aaaaaa;
    border-radius: 10px;
    padding: 0.5vw 1vw 0.5vw 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
}


.rectangle_changelog_grand {
      
      display: flex;
      flex-direction: column;
      width: auto;
      height: auto;
      background-color: #008000;
      border: 0.25vw solid #000000;
      border-radius: 2vh;
      justify-content: center;
      align-items: center;
      margin-bottom: 5vh;
      padding: 2vh 2vw;
      
}

.rectangle_changelog_petit {
    
      display: flex;
      flex-direction: column;
      width: 45vw;
      height: auto;
      background-color: #aaaaaa;
      border: 0.25vw solid #606060;
      border-radius: 2vh 2vw;
      justify-content: center;
      margin: 1vh 1vw;
      padding: 1vh 1vw;
      max-width: 90%;

}


.centre {
    
    text-align: center
}


.fewdays {
    text-align: center;
    font-style: italic;
}

.cardWrapper {
    display: flex;
    justify-content: center;
}

.card {
      background: white;
      width: 15vw;
      border-radius: 12px;
      overflow: hidden;
      margin: 1vw;
      padding: 16px;
      color: #555;
      border: 1vh solid #008000;
    }
    
.card-content h3 {
      margin: 0;
      font-size: 1.3em;
      color: #000000;
      text-align: center;
    }