* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

body {
  background-image: url("img/background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-container {
  background-image: url("img/background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 50px;
}
@media screen and (min-width: 520px) {
  .main-container {
    width: 350px;
    height: 800px;
    margin: auto;
  }
}

.header-container {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 50px;
}
.header-container img {
  max-width: 100%;
}

.game-container {
  max-width: 350px;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
}

.timer-wrapper .clock {
  background-image: url("img/clock.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 180px;
  height: 180px;
  margin-left: auto;
  margin-right: auto;
  font-size: 36px;
  font-family: "Orbitron", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-wrapper {
  font-family: "Kdam Thmor Pro", sans-serif;
  text-align: center;
  border: 3px solid #000;
  border-radius: 10px;
}
.question-wrapper .question-mark {
  position: absolute;
  width: 130px;
  margin-left: 110px;
  margin-top: -20px;
}
.question-wrapper .question-text {
  display: flex;
  align-items: center;
  min-height: 80px;
  font-size: 24px;
  padding: 5px 60px 5px 5px;
  font-weight: bold;
  border-bottom: 2px solid #000;
  margin-bottom: 20px;
  border-radius: 7px 7px 0px 0px;
  background-color: #437db2;
}
.question-wrapper .options-wrapper {
  width: 100%;
}
.question-wrapper .option {
  width: 90%;
  text-align: center;
  padding: 10px 0px;
  border: 2px solid #000;
  background-color: #fff;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 20px;
  cursor: pointer;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media (min-width: 530px) {
  .question-wrapper .option:hover {
    background-color: rgb(0, 162, 232);
  }
}
.question-wrapper .option.selected {
  background-color: #000;
  color: #fff;
}
.question-wrapper .button-wrapper {
  width: 100%;
  text-align: center;
}
.question-wrapper .button-wrapper button {
  width: 100%;
  background-color: orange;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  cursor: pointer;
}

.welcome-container,
.finish-container {
  font-family: "Kdam Thmor Pro", sans-serif;
  width: 80%;
  margin: auto;
  font-size: 20px;
}
.welcome-container p,
.finish-container p {
  text-align: center;
  margin-bottom: 10px;
}
.welcome-container .start,
.finish-container .start {
  margin-top: 50px;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
.welcome-container .start img,
.finish-container .start img {
  max-width: 100%;
}
.welcome-container .end-game,
.finish-container .end-game {
  width: 300px;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.welcome-container .play-again,
.finish-container .play-again {
  margin-top: 50px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.welcome-container .play-again img,
.finish-container .play-again img {
  max-width: 100%;
}

.hide-block {
  display: none;
}/*# sourceMappingURL=index.css.map */