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

    html, body {
      height: 100%;
    }

    .background-blur {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../texture/background/background.jpg');
      background-size: cover;
      background-position: center;
      filter: blur(10px);
      opacity: 0.6;
      z-index: -1;
      
    }


    .contenu-au-dessus {
      position: relative;
      z-index: 1;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

/* progress bar */
.progress-container {
    width: 200px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
}

/* progress bar filling */
.progress-bar{
    height: 100%;
    background-color: #4caf50;
    width: 0;
    transition: width 0.3s;
}

/* texte center in progress bar*/
.progress-text {
    text-align: center;
    font-size: 14px;
    color: #020202;
    line-height: 20px;
}
.horizontal-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.horizontal-container > div {
    border: 1px solid #7a6363;
    border-radius: 9px;

    background-color: #f0f0f0;
    margin: 5px;
    text-align: center;

    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

p{
    font-weight: bold;
    font-family: "icomoon","Montserrat",sans-serif;
    margin-bottom: -0.5px;
}
.itemEtImage{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}



.toggle {
    transition: all 0.5s ease;
}

.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.visible {
    opacity: 1;
    height: auto;
}

.mobhead {
    width: 50px;
}

div#bestiary > button > img {
  width: 100px;
}

.horizontal-container {
  border: 2px solid #671f1f;
  width: fit-content;    
  max-width: 100%; 
}

#bestiary > button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}


#bestiary > button:hover {
  background-color: rgba(0,0,0,0.05); 
  box-shadow: 0 0 5px rgba(0,0,0,0.2); 
}


#tree >img{
  width: 20px;
  background-color: #020202;
  src: local("texture/hotm/void");
}