* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.navbar {
  background-color: rgba(0, 153, 153, 0.5);
}

#titre {
  width: 100%;
  text-align: center;
  margin: 10px 0 10px 0;
}

#liste {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.fiche {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: lightgray;
  border: solid black 2px;
  border-radius: 5px;
  padding: 20px;
  margin: 15px;
  width: 30%;
  justify-content: space-between;
}

.savoir-plus {
  padding: 5px 20px 5px 20px;
  border-radius: 50px;
  background-color: gray;
  text-decoration: none;
  color: black;
}

.info-cache{
  padding: 10px;
  display: none;
  color: black;
  border: solid 2px black;
  border-radius: 10px;
  background-color: grey;
  position:fixed;
  height: fit-content;
}

.savoir-plus:hover + .info-cache{
 display: block;
}

.savoir-plus:hover {
  background-color: rgb(150, 150, 150);
  color: rgb(255, 255, 255);
}

#specification{
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}

#specification h4{
  margin: 20px;
}

#description{
  margin: 5%;
  background-color: lightgrey;
  padding: 15px;
  border: black solid 2px;
  border-radius: 20px;
}

footer{
  margin-top: auto;
}

#afficherChaineMontagne{
  cursor:pointer;
  background-color: lightgray;
  border: solid 2px black;
  padding: 5px;
  border-radius: 10px;
}

#afficherChaineMontagne:hover{
  background-color: gray;
}

#disparait{
  display: none;
}