body {
  margin: 0;
}
canvas {
  position: absolute;
  max-height: 85vh;
  max-width: 100%;   
  aspect-ratio: 1.5;
  margin: auto;
  touch-action: manipulation;  
}

#canvasBee {
  pointer-events: none
}

.hidden {
  visibility: hidden;
  display: none;
}

#btnRules, #btnNew, #btnReplay, #btnSettings {
  display: block
}

#settings {
  display: flex;
  flex-direction: column;
  height: 90vh;
  overflow: auto;
}

#settings h3 {
  text-align: center;
}

/* #settings #niveauJeu {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
} */

#settings figure {
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  padding: 5px;
  border: solid transparent 10px;
}

#settings figure span{
  font-size: 3em;
}

/* #settings #niveauJeu figure img {
  max-width: 6vw;
}

#settings #typeJeu figure img {
  max-width: 15vw
} */

#settings figure:hover {
  background: rgba(255, 255, 255, 0.5);
}

#settings input[type="radio"]:checked+label figure {
  border: solid red 10px;
  border-radius: 5px;
  box-sizing: border-box;
  color: white;
  background: rgba(255, 255, 255, 0.5);
}

input {
  display: none;
  cursor: pointer;
}