body {
  background-color: rgb(42, 42, 42);
  font-family: Arial;
}

h1 {
  color: rgb(228, 228, 228);
  z-index: 999;
  background-color: rgb(211, 109, 0);
  text-align: center;

  font-size: 50px;
  padding: 15px 25px;
  margin: 10px;
  border-radius: 35px;

  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
  /* overflow: hidden; */
  display: block;
  position: relative;
}

/*---------------------------------------- Score sheet ----------------------------------------*/

#score-sheet {
  /* display: inline; */
  /* border: 1px solid black; */
  border-radius: 30px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
  background-color: rgb(22, 21, 21);
  /* float: left; */
  padding: 20px;
  /* margin: 30px; */
  margin: -20px 30px 0px 10px;
}

#score-sheet .th1 {
  font-size: 30px;
  color: rgb(255, 141, 20);
  padding-top: 10px;
  padding-bottom: 20px;
}

#score-sheet .th2 {
  border: 1px solid black;
  width: 200px;
  background-color: rgb(255, 141, 20);
  font-size: 19px;
  padding: 15px;
}

#score-sheet td {
  border: 1px solid black;
  padding: -20px;
}

button {
  cursor: pointer;

}

.score {
  width: 50px;
  height: 50px;
  background-color: black;
  color: #e1ae07;
  cursor: pointer;
  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 16px;
}

.score:disabled {
  background-color: rgb(27, 27, 27);
  color: #7b703e;
  cursor: unset;
}

/*---------------------------------------- Area dice ----------------------------------------*/

#countRound {
  display: inline;
  color: goldenrod;
  font-size: 18px;
  /* float: left; */
  margin-top: 30px;
  margin-left: 30px;
}

#area-dice {
  display: flex;
  flex-direction: row;
  max-width: 600px;
  background-color: rgb(59, 25, 0);
  border: 1px dashed cornsilk;
  border-radius: 5px;
  /* float: left; */
  margin-top: 15px;
  margin-left: 10px;
  margin-bottom: 30px;
  padding: 10px;
}


#area-dice td {
  padding: 25px 15px;
}

.button-dice {
  max-width: 80px;
  max-height: 80px;
  border-radius: 5px;
  margin: -10px;
  cursor: pointer;
}



.button {
  background-color: rgb(255, 214, 138);
  width: 150px;
  height: 50px;
  border-radius: 5px;
  font-size: 18px;

}

/*---------------------------------------- Scrollbar ----------------------------------------*/

::-webkit-scrollbar {
  width: 0px;
}