body {
  font-family: 'Times New Roman', Times, serif;
  background: darkgrey;
  text-align: center;
  margin: 0;
  padding: 20px;
}

h1 {
  color: darkred;
  margin-bottom: 30px;
}

.question-label {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.start-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.start-container select {
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 2px solid gold;
  background-color: black;
  color: gold;
  cursor: pointer;
}

.dojo-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.dojo-img {
  max-width: 34%; 
  height: auto;
  border: 3px solid gold;
  border-radius: 8px;
}

.button-container {
  position: fixed;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn {
  background-color: black;
  color: gold;
  border: 2px solid gold;
  padding: 12px 25px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

.btn:hover {
  background-color: darkred;
  color: white;
}

/* Buttons for multiple choice options */
.choiceBtn {
  background-color: black;      
  color: gold;                  
  border: 2px solid gold;       
  padding: 10px 15px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  width: 200px;
  margin: 8px auto;
}

/* answer styling */
.choiceBtn.correct {
  background-color: green;      
  color: white;
  border-color: white;
}

/* answer styling */
.choiceBtn.wrong {
  background-color: red;        
  color: white;
  border-color: white;
}

.choiceBtn:hover {
  background-color: darkred;
  color: white;
}

.result-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: purple;
  color: gold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 9999;
  transition: transform 0.5s ease-in-out;
}

.result-box.hidden {
  display: none;
}

.result-box h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.result-box p {
  margin: 10px 0;
}

#restartBtn {
  margin-top: 20px;
}




