body {
  color: rgba(0, 0, 0, 0.8);
  background-color: #fef9f2;
  margin: 0px;
}

.intro-paragraph {
  max-width: 70ch;
  margin: auto;
  text-align: center;
  margin-bottom: 2rem;
}

.App {
  text-align: center;
}

.App-header {
  background-color: #aed9e0;
  padding: 1rem;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.score-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.score-label {
  font-weight: bold;
  margin-right: 10px;
}

.score-value {
  font-weight: normal;
}

.answer-question {
  margin: 4rem 0;
}

.answer-question__question {
  font-size: 1.5rem;
}

.answer-question__answers {
  display: inline-grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  list-style: none;
  width: 90vw;
  padding-left: 0;
}

/* So that on small screens the buttons aren't too small */
@media only screen and (max-width: 600px) {
  .answer-question__answers {
    grid-template-columns: 1fr;
  }
}

.answer-question__answers button {
  background-color: none;
  border: none;
  padding: 1rem;
  width: 100%;
  cursor: pointer;
}

.answer-question__answers> :nth-child(1) button {
  background-color: #ffa69e;
}

.answer-question__answers> :nth-child(2) button {
  background-color: #faf3dd;
}

.answer-question__answers> :nth-child(3) button {
  background-color: #b8f2e6;
}

.answer-question__answers> :nth-child(4) button {
  background-color: #aed9e0;
}

.question-json {
  text-align: left;
  width: min-content;
  margin-bottom: 3% !important;
  margin: auto;
}

footer {
  background-color: #aed9e0;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-evenly;
  width: 100vw;
  padding: 0.5rem 0;
}

.footer-container {
  display: flex;
  align-items: center;
}

.footer-content {
  margin: 0 10px;
}

.divider {
  margin: 0 5px;
  color: #000;
  /* Define a cor do caractere "|" */
}


.teste {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
}

.alert.success {
  background-color: #04AA6D;
}

.alert.info {
  background-color: #2196F3;
}

.alert.warning {
  background-color: #ff9800;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.custom-button {
  margin: 12px;
  display: inline-block;
  padding: 10px 98px;
  background-color: #007BFF;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.custom-button:hover {
  background-color: #0056b3;
  /* Change the background color on hover */
}