* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lora", serif;
  text-decoration: none;
  color: #0d0c05;
}
body {
  background: #ccc;
  height: 100vh;
}
.container {
  width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fffffe;
  text-align: center;
  margin-top: 120px;
  min-height: 500px;
}
footer {
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}
h1 {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 20px;
}
.pergunta {
  animation: show 0.5s forwards;
}
@keyframes show {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.progress {
  height: 15px;
  width: 100%;
  margin-bottom: 30px;
}
.barra {
  background: rgb(19, 130, 9);
  height: 100%;
  transition: 0.5s;
}
h2 {
  font-size: 18px;
  margin-bottom: 20px;
}
.alternativas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}
button,
.btn {
  width: 100%;
  height: 70px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.4s;
  color: #491a01;
  background: #e16523;
  border: #802e03 2px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  min-width: 300px;
}
button:hover {
  border-color: #e16523;
}
ol {
  margin: 20px auto;
  text-align: left;
  padding-left: 20px;
}
ol li {
  margin-bottom: 10px;
}
.pergunta5 .btn {
  margin: 30px auto;
}
svg path,
svg rect {
  fill: #ff6700;
}
.loading {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1500px) {
  footer {
    height: 40px;
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  .container {
    width: 90%;
    height: auto;
    min-height: none;
    margin-top: 40px;
  }
  .alternativas {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  button,
  .btn {
    font-size: 14px;
    max-width: 100%;
    min-width: 150px;
  }
  .container {
    padding: 20px 10px;
  }
  .loading {
    flex-direction: column;
  }
}
