body {
  font-family: 'Comic Sans MS', cursive;
  text-align: center;
  background-color: #e0fdfc;
  padding: 20px;
}

h1 {
  color: #2EC4B6;
}

#board {
  display: grid;
  grid-template-columns: repeat(5, 60px);
  gap: 5px;
  justify-content: center;
  margin: 20px auto;
}

.cell {
  width: 60px;
  height: 60px;
  background-color: #FFBF00;
  border: 2px solid #FFA500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
}

.cell.finish {
  background-color: #2EC4B6;
}

.player {
  background-color: #FF6B6B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

#question-container {
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  max-width: 400px;
  box-shadow: 2px 2px 8px #ccc;
}

#question {
  font-weight: bold;
  margin-bottom: 10px;
}

#options button {
  display: block;
  margin: 5px auto;
  padding: 10px;
  width: 100%;
  background-color: #2EC4B6;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

#options button:hover {
  background-color: #1cae9f;
}

#message {
  margin-top: 20px;
  font-size: 1.2em;
  color: #006400;
}
