html {
  
  outline: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(2, 1, 1, 0);
  font-family: "Open Sans", sans-serif;
  margin: 0px;
  padding: 0px;
  background-color: #ddd;
}

html,
body {
  touch-action: manipulation;
  outline: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  font-family: "Open Sans", sans-serif;
  margin: 0px;
  padding: 0px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;

}

body, html {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #ddd;
}

.math-quiz-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.math-quiz-content {
  width: 780px;
  height: 750px;
  position: relative;
  transform-origin: top left;
  background-image: url(../image/bg1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}





.math-quiz-answer-correct-scorebox {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  user-select: none;
  width: 123px;
  height: 89px;
  left: 50px;
  bottom: 20px;
  border-radius: 10px;
  background-color: black;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  color: white;
  padding-bottom: 5px;
  font-size: 70px;
  border: 10px solid #ffff0000;
}

.math-quiz-correct-score-text {
  word-break: break-word;
  margin: auto;
  user-select: none;
}

.math-quiz-answer-correct-smiley {
  background-image: url(../image/SMILE.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  user-select: none;
  width: 130px;
  height: 130px;
  left: 230px;
  bottom: 15px;

}

.math-quiz-answer-wrong-scorebox {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  user-select: none;
  width: 130px;
  height: 110px;
  right: 250px;
  border-radius: 10px;
  bottom: 20px;
  background-color: black;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 70px;
}

.math-quiz-wrong-score-text {
  word-break: break-word;
  margin: auto;
  user-select: none;
}

.math-quiz-answer-wrong-smiley {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  user-select: none;
  width: 130px;
  height: 130px;
  right: 75px;
  bottom: 15px;

}

.math-quiz-question-container {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  user-select: none;
  width: 700px;
  height: 325px;
  left: 55px;
  border-radius: 10px;
  top: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.math-quiz-question-image {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  user-select: none;
  width: 100%;
  height: 100%;
}

.math-quiz-option-text-box {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  user-select: none;
  width: 270px;
  height: 60px;
  border-radius: 10px;
  font-weight: bold;
  color: black;
  font-size: 35px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  background-color: rgb(157, 205, 237);
  border: 2px solid #ffffff00;
  box-shadow: inset 0 0 3px black;
}

.math-quiz-option-text {
  width: 100%;
  word-break: break-word;
  margin: auto;
  user-select: none;
  cursor: pointer;
}

.math-quiz-complete {
  position: absolute;
  width: 780px;
  height: 750px;
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events: revert;
  color: white;
  font-size: 70px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  display: none;
  gap: 80px;
  
}

.score{
  height: 100px ;
  width: 300px;
  background-color: aliceblue;
  position: absolute;
  top: 500px;
  border-radius: 50px;
  background-color: rgb(134, 228, 228);
  box-shadow: inset 0 0 3px black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: black;
}

.gamestart{
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  background-image: url(../image/quiz.webp);
  background-size: cover;
  background-position: center;
}

.gamestart img {
  height: 100px;
  position: absolute;
  left: 50%;
  top: 75%;
  translate: -50% -50%;
  cursor: pointer;
  border-radius: 50%;
}

.gamestart img:hover {
  transform: scale(1.5);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #372f2f;
  
}

.replaybtn{
  height: 150px;
  border-radius: 50%;
}


.replaybtn:hover{
  transform: scale(1.5);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #372f2f;
  
}
