@media (orientation: landscape) {
  :root {
    --size: 80vh;
  }
}
@media (orientation: portrait) {
  :root {
    --size: 80vw;
  }
}
* {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
}

.banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 50vh;
}
.banner img {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 25%;
  transform: translate(-50%, 0);
}

.main {
  position: absolute;
  height: 100vh;
  width: 50vw;
  left: 50%;
  top: 0;
}

body {
  margin: 0;
  padding: 0;
  background: rgba(255, 145, 0, 0.8980392157);
  overflow: hidden;
}

.questionSelectionButton {
  position: absolute;
  top: 50vh;
  left: 50%;
  width: var(--size);
  height: calc(var(--size) / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(var(--size) / 12);
}
.questionSelectionButton span {
  display: block;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.itQuestions {
  transform: translate(-50%, -100%);
  background: red;
  border-radius: calc(var(--size) / 2) calc(var(--size) / 2) 0 0;
}
.itQuestions span {
  transform: translateY(-80%);
}

.finanseQuestions {
  transform: translate(-50%, 0);
  background: blue;
  border-radius: 0 0 calc(var(--size) / 2) calc(var(--size) / 2);
  vertical-align: bottom;
}
.finanseQuestions span {
  transform: translateY(80%);
}

.allQuestions {
  z-index: 1;
  width: calc(var(--size) / 2);
  height: calc(var(--size) / 2);
  background: #fff;
  transform: translate(-50%, -50%);
  border-radius: calc(var(--size) / 2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.questionBox {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  width: calc(var(--size) * 0.9);
  height: calc(var(--size) * 0.9);
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.questionBox .questionText {
  font-size: clamp(14px, var(--size) / 20, 40px);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  line-height: 1.3;
  flex-shrink: 0;
  height: 30%;
  overflow-y: auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-overflow: ellipsis;
}
.questionBox .answersBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  overflow-y: auto;
}
.questionBox .answersBox .answerButton {
  background: #eee;
  border: none;
  border-radius: 5px;
  font-size: clamp(12px, var(--size) / 25, 30px);
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
  line-height: 1.2;
  min-height: 3em;
  margin-bottom: 10px;
}
.questionBox .answersBox .answerButton:hover {
  background: #ddd;
}
.questionBox .answersBox .answerButton:active {
  background: #ccc;
}
.questionBox .answersBox .answerButton.goodSelected {
  background: #4CAF50;
  color: #fff;
}
.questionBox .answersBox .answerButton.badSelected {
  background: #f44336;
  color: #fff;
}

.backButton {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: clamp(10px, var(--size) / 25, 28px);
  cursor: pointer;
  transition: background 0.3s;
}

.fullscreen {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  pading: 10px;
  background: rgba(204, 116, 0, 0.8980392157);
  color: white;
  z-index: 10;
  border-radius: 50%;
}

.questionRandomizing {
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  height: 275px;
  width: calc(100% - 20px);
  overflow: hidden;
  background: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.questionRandomizing .questionRandom {
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 50px;
  line-height: 50px;
  padding: 10px;
  margin-bottom: 10px;
  color: black;
}

.mandok {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  z-index: 10;
  background: rgba(204, 116, 0, 0.8980392157);
  border-radius: 50%;
}/*# sourceMappingURL=style.css.map */