

*, *:after, *:before {
  box-sizing: border-box;
}

body {
margin: 0;
font-family: 'Roboto', sans-serif;
text-transform: uppercase;
color: #fff;
letter-spacing: 2px
}

.container {
  position: relative;
  background-color: black; /* Fundo preto */
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./bg.png'); /* Substitua pelo caminho da imagem */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.4; /* Ajuste a opacidade da imagem */
}


}

.wrapper {
  max-width: 800px;
  margin: auto;
}

.screen-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 20px 20px 70px;
  position: relative;
}

.hidden {
  display: none;
}

.quiz-screen-step {
  color: #bc9c63;
}

.quiz-image-wrapper {
  max-width: 100%;
  margin: 150px auto;
  position: relative;
}

.quiz-image {
  max-width: 100%; 
  top: 50px;
  width: 400px;
  position: relative;
  z-index: 1;
}

.quiz-timer {
  width: 550px;
  max-width: 100%;
  height: 20px;
  background: #FFFFFF;
  border-radius: 3em;
  margin-bottom: 50px;
  padding: 5px 6px;
}

.quiz-timer span {
  display: inline-block;
  background: linear-gradient(90deg, #7f5b21, #bc9c63);
  height: 10px;
  vertical-align: top;
  border-radius: 3em;

  animation: progressbar-countdown;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  animation-timing-function: linear;
}

@keyframes progressbar-countdown {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

.quiz-question {
  margin-bottom: 50px;
}

.how-to-play-screen .default-button {
  margin-bottom: 60px;
  margin-top: 30px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  width: 600px;
  max-width: 100%;
}

.button-outer {
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 20px;
  max-width: 100%;
}

.default-button {
  background: transparent;
  border-radius: 3em;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #fff	;
  letter-spacing: 2.45px;
  border: 4px solid #bc9c63;
  padding: 10px 8px;
  text-transform: uppercase;
  transition: background .2s;
  outline: none;
  width: 250px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.default-button:hover {
  background: #5b3f12;
}

.default-button[disabled] {
  border-color: #5b3f12;
  background: transparent;
  color: #5b3f12;
  cursor: default;
}

.default-button[disabled]:hover {
  background: transparent;
}

.default-button.correct {
  cursor: default;
  background: #00E510;
  color: #010501;
  border-color: #010501;
}

.default-button.correct::before {
  content: '';
  height: 18px;
  width: 18px;
  display: inline-block;
  background: url('./assets/check-mark.png') center no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -2px;
}

.default-button.correct:hover {
  background: #00E510;
  color: #010501;
  border-color: #010501;
}

.default-button.wrong {
  cursor: default;
  background: #FF0000;
  color: #010501;
  border-color: #010501;
}

.default-button.wrong::before {
  content: '';
  height: 18px;
  width: 18px;
  display: inline-block;
  background: url('./assets/cross.png') center no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -2px;
}

.default-button.wrong:hover {
  background: #F6484C;
  color: #010501;
  border-color: #010501;
}

.title {
  font-size: 32px;
  margin-top: 100px;
}
.text {
  line-height: 24px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  color: #B8BBF5;
  text-transform: none;
}

.quiz-logo img {
  position: absolute; 
  width: 200px;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.quiz-corner-logo {
  position: absolute;
  left: 0;
  top: 15px;
  width: 150px;
}
.close-button {
  position: absolute;
  top: 50px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Chewy', cursive;
  font-size: 34px;
  outline: none;
  text-transform: none;
  cursor: pointer;
  transition: color .2s;
}

.close-button:hover {
  color: #eee;
}
.score-name {
  margin: 0 0 28px;
  font-size: 46px;
}
.score {
  font-size: 18px;
  margin-bottom: 10px;
}
.description {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  text-transform: none;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 30px;
}

@media screen and (min-width: 700px) {
  .screen-section {
    padding: 50px;
  }
  .button-outer {
    flex-basis: 50%;
  }
}

.default-button {
  white-space: normal; /* Permite quebra de linha */
  word-wrap: break-word;
  text-align: center;
  padding: 10px;
  min-height: 50px; /* Ajuste conforme necessário */
}