body {
  font-family: 'Comic Sans MS', 'Comic Sans', "Chalkboard SE", sans-serif;
  text-align: center;
}
#word-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 50px;
}
#description-container {
  font-size: 50px;
}
#complete {
  color: orangered;
  font-weight: bold;
}
#score-label {
  font-size: 30px;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 30px;
  color: darkblue;
  color: #FFFF00;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
#score-label-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#correct-word-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#correct-word-label {
  font-size: 30px;
  padding: 5px 15px;
  color: #FFFFE0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#score-correct {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#total-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#total-label {
  color: #555;
  font-size: 22px;
  padding: 20px;
}
#next-button {
  color: tomato;
  font-size: 20px;
  cursor: pointer;
}
#page-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.letter {
  padding: 20px;
  padding: 0px 20px 5px 20px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  cursor: move;
  display: inline-block;
  user-select: none;
}
.sortable-chosen {
  background-color: #ffdd57;
  border-color: #ffaa00;
}
.sortable-ghost {
  opacity: 0.4;
}
button {
  font-family: 'Comic Sans MS', 'Comic Sans', "Chalkboard SE", sans-serif;
  padding: 10px 20px;
  font-size: 16px;
}
#start, #check {
  cursor: pointer;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #d0f0d0; /* Lighter green background */
  color: green;
  border: 2px solid green; /* Border same as text color */
}
#start {
  border-radius: 0 10px 10px 0;
  width: 88px;
  padding: 3px;
}
#check {
  background-color: #ffe5d1; /* Lighter orange background */
  color: orangered; /* Dark orange text */
  border: 2px solid orangered;
  margin-top: 20px;
}
.navButton {
  width: 90px;
  padding: 5px 10px;
  margin: 2px;
}
#start:hover, #check:hover {
  opacity: 0.9;
}
#navigation-index {
    font-size: 30px;
    width: 100px;
}
#countdown {
    text-align: left;
    padding: 3px 3px 3px 22px;
    width: 80px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 24px;
    border-radius: 10px 0 0 10px;
    border: 1px black solid;
    display: inline-block;
}
#startButDiv {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
#clues {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 15px;
}
#navigationDiv {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.playButton {
  width: 63px;
  height: 43px;
  margin: 5px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.playButton:hover {
  background-color: #0056b3;
}
.showButton {
  width: 63px;
  height: 43px;
  margin: 5px;
  background-color: #3af920;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.showButton:hover {
  background-color: #239b13;
}
.clueButton {
  width: 63px;
  height: 43px;
  margin: 5px;
  background-color: tomato;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.clueButton:hover {
  background-color: #cd381d;
}
#playWord::after  {
  content: "A";
}
#playDescription::after  {
  content: "Q";
}
select 
{
  padding: 5px;
}
#settingDiv {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 900px;
  text-align: left;
}
#settingDiv label {
  display: block;
}
@media (max-width: 550px) {
  #settingDiv {
    flex-direction: column;
    align-items: center;
  }
}