body {
  font-family: Arial, sans-serif;
  background-color: #FFEAC5;
  margin: 0;
  padding: 0;
}

.container {
  padding: 6rem;
  background-color: #FFEAC5;
  min-height: 100vh;
}

.container-info {
  margin-left: 10rem;
  margin-right: 10rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.question-container {
  margin-bottom: 15px;
  background-color: #D4B895; /* Cor mais escura para o bloco de perguntas */
  padding: 20px;
  border-radius: 10px;
}

.question {
  font-size: 16px;
  margin-top: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.options-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px; /* Adiciona espaço entre os botões */
}

button {
  background-color: #6C4E31;
  padding: 10px;
  margin: 2px;
  border-radius: 5px;
  color: white;
  border: none;
  cursor: pointer;
}

button.active {
  background-color: #2c2117;
}

.submit-button {
  background-color: #6C4E31;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-align: center;
  display: block;
  width: 100%;
}
