.questiongame{
  padding-top: 24px;
  background-image: url("../images/nativelanguage/questionbgc.jpg");
}
.questiongame .wrap{
    margin-top: 0;
}
.questiongame .wrap .item .txt h3{
    font-size: 24px;
    font-weight: 500;
    padding:8px 0 12px;
}
.questiongame .wrap .item .txt p{
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 1px;
}
#questionitem{
  padding-bottom:36px;
}
/* 題號 */
#questionNumber {
  font-size: 20px;
  text-align: center;
  line-height: 150%;
  color: #EC6C00;
  font-weight: 400;
}
/* 問題標題 */
#question {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 150%;
}
#startButton{
  display: flex;
  width: fit-content;
  margin: auto;
  border-radius: 8px;
  background-color: #fab74c;
  border: 0px;
  padding: 8px 24px;
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-top: 36px;
  cursor: pointer;
  transition: 0.5s;
}
#startButton:hover{
  background-color: #EC6C00;
  color: #fff;
}
#options {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width:100%;
}
.option {
  width:100%;
  margin: 10px;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #4d4d4d;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 20px;
  justify-content: center;
}
.option:hover {
  background-color: #f0f0f0;
}
.option span {
  font-weight: 300;
  padding: 12px 0;
}
/* 解釋 */
#explanation {
  margin-top: 20px;
}
#explanation p{
  text-align: center;
  font-size: 16px;
  line-height: 150%;
}
/* 上一題下一題 */
#buttons{
  justify-content: center;
}
.button {
  border-radius: 8px;
  background-color: #fab74c;
  border: 0px;
  padding: 8px 24px;
  margin: 24px 8px 0;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: 0.5s;
}
.button:hover {
  background-color: #EC6C00;
  color: #fff;
}
@media (min-width:768px){
    #question {
      width: 60%;
      font-size: 22px;
      margin: auto;
    }
    .questiongame .wrap .item{
        width: 90%;
        margin: auto;
    }
    .questiongame .wrap .item .card{
      flex-wrap: wrap;
      justify-content: center;
    }
    .questiongame .wrap .item .pic{
        max-width: 600px;
        margin: auto;
    }
    .questiongame .wrap .item .txt{
      width: 60%;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        margin: auto;
    }
    .questiongame .wrap .item .txt h3{
        margin: auto;
    }
    #options {
      width:60%;
    }
}